mirror of
https://git.alemi.dev/tci.git
synced 2024-11-12 19:59:19 +01:00
6 lines
114 B
Bash
Executable file
6 lines
114 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "building tci"
|
|
cargo build --release
|
|
echo "installing tci"
|
|
cp ./target/release/tci /opt/bin/tci
|