forked from showwin/speedtest-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to make build faster (only build linux/386 and amd64)
- Loading branch information
Sébastien B
authored and
Sébastien B
committed
Jun 26, 2019
1 parent
9219f05
commit 5268b5c
Showing
2 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
set -ex | ||
|
||
for binary in $(dist/speedtest-go*/speedtest-go*) | ||
for binary in $(ls dist/speedtest-go*/speedtest-go*) | ||
do | ||
upx $binary & | ||
upx --brute $binary & | ||
done | ||
|
||
wait |