AppFlowy/frontend/scripts/linux_installer/postinst
Lucas 8046177d84
fix: simple columns issues (#7466)
* Revert "feat: use flutter_distrubutor to build linux and macos packages (#7392)"

This reverts commit 6dc45c9830.

* fix: linux link issue

* fix: outline doesn't work well in columns

* fix: cannot drag a block under a table that’s in the second column
2025-03-06 12:33:53 +08:00

7 lines
225 B
Bash

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