-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase client loops to 6; streamline install cmds
- Loading branch information
1 parent
3227056
commit 2c17d18
Showing
2 changed files
with
7 additions
and
5 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,11 @@ | ||
#!/bin/bash | ||
|
||
cargo install --locked --profile release-dbg --path binaries/geph5-client | ||
cargo install --locked --profile release-dbg --target x86_64-unknown-linux-musl --path binaries/geph5-exit | ||
cargo install --locked --profile release-dbg --target x86_64-unknown-linux-musl --path binaries/geph5-bridge | ||
cargo install --locked --profile release-dbg --target x86_64-unknown-linux-musl --path binaries/geph5-broker | ||
cargo install --locked --target x86_64-unknown-linux-musl --path binaries/geph5-client | ||
cargo install --locked --target x86_64-unknown-linux-musl --path binaries/geph5-exit | ||
cargo install --locked --target x86_64-unknown-linux-musl --path binaries/geph5-bridge | ||
cargo install --locked --target x86_64-unknown-linux-musl --path binaries/geph5-broker | ||
|
||
rsync -avz --progress $(which geph5-client) [email protected]:/usr/local/bin | ||
|
||
rsync -avz --progress $(which geph5-exit) [email protected]:/usr/local/bin | ||
rsync -avz --progress $(which geph5-bridge) [email protected]:/usr/local/bin | ||
|