Merge pull request #9 from MaksimZhukov/v-mazhuk/fix-powershell-issue-with-paths

Fix PowerShell issue with relative paths
This commit is contained in:
MaksimZhukov
2020-11-18 14:11:15 +03:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
using module "./builders/win-boost-builder.psm1"
using module "./builders/nix-boost-builder.psm1"
using module "./win-boost-builder.psm1"
using module "./nix-boost-builder.psm1"
<#
.SYNOPSIS

View File

@@ -1,4 +1,4 @@
using module "./builders/boost-builder.psm1"
using module "./boost-builder.psm1"
class NixBoostBuilder : BoostBuilder {
<#

View File

@@ -1,4 +1,4 @@
using module "./builders/boost-builder.psm1"
using module "./boost-builder.psm1"
class WinBoostBuilder : BoostBuilder {