Skip to content

Commit

Permalink
change release binaries to release path
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostplant committed Feb 23, 2021
1 parent 62ce83e commit 5181eee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ static bool initEnvironment()
if (!File.Exists(HlslDllName))
{
Console.WriteLine("[INFO] Downloading required DLL dependencies..");
runSystemCommand("curl.exe", "-LOs https://github.com/microsoft/antares/raw/library/" + HlslDllName);
runSystemCommand("curl.exe", "-LOs https://github.com/microsoft/antares/releases/download/v0.1.0/" + HlslDllName);
}

runSystemCommand("netsh.exe", "advfirewall firewall add rule name=AntaresEvalAgent dir=in action=allow protocol=TCP localport=" + LISTEN_PORT);
Expand Down
2 changes: 1 addition & 1 deletion backends/c-hlsl/evaluator/AntaresHlslLib/examples/make.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off

echo Downloading dependencies ..
curl -LOs https://github.com/microsoft/antares/raw/library/antares_hlsl_v0.1_x64.dll
curl -LOs https://github.com/microsoft/antares/releases/download/v0.1.0/antares_hlsl_v0.1_x64.dll

echo Compiling helloworld example ..
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe helloworld.cs
Expand Down

0 comments on commit 5181eee

Please sign in to comment.