Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Not sure why, but the xgo GitHub action suddenly outputs different binary names now...
  • Loading branch information
sleeyax committed Aug 13, 2022
1 parent ca24515 commit 08fce6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ copy() {
}

copy_macos() {
copy "server-darwin-10.16-amd64.dylib" "darwin-x86-64"
copy "server-darwin-amd64.dylib" "darwin-x86-64"
}

copy_linux_386() {
Expand All @@ -44,11 +44,11 @@ copy_linux_amd64() {
}

copy_windows_amd64() {
copy "server-windows-4.0-amd64.dll" "win32-x86-64"
copy "server-windows-amd64.dll" "win32-x86-64"
}

copy_windows_386() {
copy "server-windows-4.0-386.dll" "win32-x86"
copy "server-windows-386.dll" "win32-x86"
}

# build separate jar files per platform
Expand Down

0 comments on commit 08fce6f

Please sign in to comment.