58103f9e30
* Build .deb packages for some architectures on CI to publish on GitHub * Add release binaries to archive root, update Cargo.toml * Simplify Debian package building using cargo-deb tooling * Update LICENSE file copyright statement * Update Travis CI script to properly build Debian release packages * Remove obsolete Debian package files * Update Cargo.toml and Cargo.lock, add create_deb prototype for source package
7 lines
162 B
Bash
Executable file
7 lines
162 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Create an ffs alias
|
|
if [[ ! -f /usr/bin/ffs ]]; then
|
|
echo "Creating ffs alias for ffsend..."
|
|
ln -s /usr/bin/ffsend /usr/bin/ffs
|
|
fi
|