Fix PowerShell issue with relative paths #44

Merged
MaksimZhukov merged 1 commits from v-mazhuk/fix-powerhell-issue-with-paths into main 2020-11-17 22:54:46 +05:00
3 changed files with 4 additions and 4 deletions

View File

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

View File

@@ -1,4 +1,4 @@
using module "./builders/node-builder.psm1"
using module "./node-builder.psm1"
class NixNodeBuilder : NodeBuilder {
<#

View File

@@ -1,4 +1,4 @@
using module "./builders/node-builder.psm1"
using module "./node-builder.psm1"
class WinNodeBuilder : NodeBuilder {
<#