diff --git a/README.md b/README.md index 933204d..11720c1 100644 --- a/README.md +++ b/README.md @@ -34,24 +34,12 @@ Windows 10: [64-bit Download](https://rootprojects.org/pathman/dist/windows/amd6 powershell.exe $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest https://rootprojects.org/pathman/dist/windows/amd64/pathman.exe -OutFile pathman.exe ``` -**Debug version**: - -``` -powershell.exe $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest https://rootprojects.org/pathman/dist/windows/amd64/pathman.debug.exe -OutFile pathman.debug.exe -``` - Windows 7: [32-bit Download](https://rootprojects.org/pathman/dist/windows/386/pathman.exe) ``` powershell.exe "(New-Object Net.WebClient).DownloadFile('https://rootprojects.org/pathman/dist/windows/386/pathman.exe', 'pathman.exe')" ``` -**Debug version**: - -``` -powershell.exe "(New-Object Net.WebClient).DownloadFile('https://rootprojects.org/pathman/dist/windows/386/pathman.debug.exe', 'pathman.debug.exe')" -``` - ### Linux diff --git a/build-all.sh b/build-all.sh index 63c34f0..e40f10d 100644 --- a/build-all.sh +++ b/build-all.sh @@ -14,10 +14,9 @@ echo "" echo "Windows amd64" #GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.exe -ldflags "-s -w -H=windowsgui" $gocmd GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.exe -ldflags "-s -w" $gocmd -GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.debug.exe +#GOOS=windows GOARCH=amd64 go build -mod=vendor -o dist/windows/amd64/${exe}.debug.exe echo "Windows 386" GOOS=windows GOARCH=386 go build -mod=vendor -o dist/windows/386/${exe}.exe -ldflags "-s -w" $gocmd -GOOS=windows GOARCH=386 go build -mod=vendor -o dist/windows/386/${exe}.debug.exe echo "" echo "Darwin (macOS) amd64"