mirror of
https://github.com/veeso/termscp.git
synced 2025-12-07 01:26:04 -08:00
12 lines
210 B
Bash
Executable File
12 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Installing cargo-deb..."
|
|
cargo install cargo-deb
|
|
if [ ! -f "Cargo.toml" ]; then
|
|
echo "Yout must be in the project root directory"
|
|
exit 1
|
|
fi
|
|
echo "Running cargo-deb"
|
|
cargo deb
|
|
exit $?
|