diff --git a/README.md b/README.md index 8921b4a..5c2477f 100644 --- a/README.md +++ b/README.md @@ -6,18 +6,18 @@ CLI tool for updating and launching [Project Epoch](https://www.project-epoch.ne ### Windows -Download and extract the latest binary from the [releases](https://git.burkey.co/eburk/epochcli/releases) page or build from source yourself, then copy `epochcli.exe` to a location of your choice. Easiest method is to just use the folder with your wow install. +Download and extract the latest binary from the [releases](https://git.burkey.co/eburk/epochcli/releases) page or build from source yourself, then copy `epochcli.exe` to a location of your choice. To make it easy, just use the same folder as your Wow game files. ### Linux A `wine` prefix with `dxvk` installed is sufficient, or you can use something like Lutris or faugus-launcher and just use `epochcli` for updating. -Download and extract the latest binary from the [releases](https://git.burkey.co/eburk/epochcli/releases) page, build from source yourself, or use homebrew in the macOS instructions below +Download and extract the latest binary from the [releases](https://git.burkey.co/eburk/epochcli/releases) page, build from source yourself, or use homebrew to install. ### macOS -For macOS, I've found the best way to run the client is in a Parallels Win 11 VM. Kegworks, Codeweavers, etc crash when the game starts up and I have not found a good solution so far. Any suggestions would be welcome, see my contact information below. +For macOS, I've found the best way to run Wow is in a Parallels Win 11 VM. Kegworks, Codeweavers, etc crash when the game starts up and I have not found a good solution so far. Any suggestions would be welcome, see my contact information below. -You can easily install with homebrew or build from source yourself. For homebrew, do the following: +You can easily install with homebrew or build from source yourself. I dont have time to setup codesigning right now so there are no binaries provided for macOS. For homebrew, do the following: ```shell brew tap eburk/epochcli https://git.burkey.co/eburk/epochcli diff --git a/release.sh b/release.sh index dce84c1..538e903 100755 --- a/release.sh +++ b/release.sh @@ -13,13 +13,10 @@ tar czvf epochcli-linux-amd64.tar.gz bin/epochcli-linux-amd64 GOOS=linux GOARCH=arm64 go build -o bin/epochcli-linux-arm64 tar czvf epochcli-linux-arm64.tar.gz bin/epochcli-linux-arm64 -GOOS=darwin GOARCH=arm64 go build -o bin/epochcli-darwin-arm64 -tar czvf epochcli-darwin-arm64.tar.gz bin/epochcli-darwin-arm64 - -GOOS=darwin GOARCH=amd64 go build -o bin/epochcli-darwin-amd64 -tar czvf epochcli-darwin-amd64.tar.gz bin/epochcli-darwin-amd64 - GOOS=windows GOARCH=amd64 go build -o bin/epochcli-windows-amd64 zip epochcli-windows-amd64.zip bin/epochcli-windows-amd64 +GOOS=windows GOARCH=arm64 go build -o bin/epochcli-windows-arm64 +zip epochcli-windows-arm64.zip bin/epochcli-windows-arm64 + rm -rf bin \ No newline at end of file