Merge pull request #21 from MaksimZhukov/v-mazhuk/fix-powerhell-issue-with-paths

Fix PowerShell issue with relative paths
This commit is contained in:
MaksimZhukov 2020-11-17 20:54:55 +03:00 committed by GitHub
commit eab7225c23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

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

View file

@ -1,4 +1,4 @@
using module "./builders/go-builder.psm1"
using module "./go-builder.psm1"
class NixGoBuilder : GoBuilder {
<#

View file

@ -1,4 +1,4 @@
using module "./builders/go-builder.psm1"
using module "./go-builder.psm1"
class WinGoBuilder : GoBuilder {
<#