diff options
-rwxr-xr-x | refresh.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,8 +10,8 @@ scp -r public/* root@rpi3:/var/www/mfashby.net/ # build & install comments app pushd comments -cargo build --release -scp target/release/comments root@rpi3:/usr/local/bin/comments +RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc" cargo build --target=aarch64-unknown-linux-gnu --release +scp target/aarch64-unknown-linux-gnu/release/comments root@rpi3:/usr/local/bin/comments scp comments.service root@rpi3:/etc/systemd/system/comments.service ssh root@rpi3 -C systemctl daemon-reload ssh root@rpi3 -C systemctl restart comments |