chore: bump version 0.3.4 (#3572)

* chore: bump version 0.3.4

* fix: docker file build
This commit is contained in:
Lucas.Xu
2023-10-02 20:48:56 +08:00
committed by GitHub
parent 7f44b181bd
commit 8d9d0e9358
5 changed files with 25 additions and 3 deletions

View File

@ -47,7 +47,7 @@ RUN flutter doctor
RUN dart pub global activate protoc_plugin 20.0.1
# Install build dependencies for AppFlowy
RUN sudo pacman -S --noconfirm git libkeybinder3 sqlite clang rsync
RUN sudo pacman -S --noconfirm git libkeybinder3 sqlite clang rsync libnotify
RUN source ~/.cargo/env && cargo install --force cargo-make duckscript_cli
# Build AppFlowy

View File

@ -72,6 +72,15 @@ else
echo 'Your system is not supported, please install keybinder3 manually.'
fi
printMessage "Installing libnotify"
if command apt-get &>/dev/null; then
sudo apt-get install libnotify-dev
elif command dnf &>/dev/null; then
sudo dnf install libnotify-dev
else
echo 'Your system is not supported, please install keybinder3 manually.'
fi
# Add the githooks directory to your git configuration
printMessage "Setting up githooks."
git config core.hooksPath .githooks