ffsend/pkg/deb/postinst
Tim Visée 58103f9e30
Use a new Debian package generation method (#5)
* 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
2018-06-01 00:04:13 +02:00

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