소스 검색

Fix path separator in nuget push

Brad Robinson 1 주 전
부모
커밋
9116982ee8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      build.js

+ 1 - 1
build.js

@@ -26,6 +26,6 @@ if (bt.options.official)
 
     // Push nuget package
     bt.run(`dotnet nuget push`,
-           `./Build/Release/*.${bt.options.version.build}.nupkg`,
+           `.\\Build\\Release\\*.${bt.options.version.build}.nupkg`,
            `--source nuget.org`);
 }