mirror of
https://git.alemi.dev/fedimut.git
synced 2024-11-14 04:49:20 +01:00
7 lines
186 B
Bash
Executable file
7 lines
186 B
Bash
Executable file
#!/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
|
|
|