Change download pattern for version 1.0.17

This commit is contained in:
Volker Berlin 2020-06-18 21:27:20 +02:00
parent 07efadb815
commit 94aa7e7b30

View File

@ -56,9 +56,9 @@ class Wat2Wasm {
if( os.contains( "windows" ) ) {
fileName = "windows.tar.gz";
} else if( os.contains( "mac" ) ) {
fileName = "macos.tar.gz";
fileName = "osx.tar.gz";
} else if( os.contains( "linux" ) ) {
fileName = "ubuntu.tar.gz";
fileName = "linux.tar.gz";
} else {
throw new IllegalStateException( "Unknown OS: " + os );
}