mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-06-29 18:23:00 -04:00
* 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
8 lines
280 B
Bash
Executable file
8 lines
280 B
Bash
Executable file
#!/usr/bin/env 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
|