AppFlowy/frontend/scripts/linux_distribution/deb/DEBIAN/postinst

9 lines
272 B
Plaintext
Raw Normal View History

#!/bin/bash
if [ -e /usr/bin/AppFlowy ]; then
echo "Symlink already exists, skipping."
else
echo "Creating Symlink in /usr/bin/appflowy"
ln -s /usr/lib/AppFlowy/AppFlowy /usr/bin/AppFlowy
ln -s /usr/lib/AppFlowy/launcher.sh /usr/bin/AppFlowyLauncher.sh
fi