Explorar o código

Fix path separator in nuget push

Brad Robinson hai 1 semana
pai
achega
9116982ee8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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`);
 }