mirror of
https://git.alemi.dev/fedimut.git
synced 2024-11-14 12:59:20 +01:00
8 lines
186 B
Text
8 lines
186 B
Text
|
#!/bin/bash
|
||
|
|
||
|
echo "rebuilding..."
|
||
|
cargo build --release
|
||
|
echo "installing..."
|
||
|
cat ./target/release/fedimut > /opt/bin/fedimut # do it like this because we lack w perms on the directory
|
||
|
|