mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-29 10:17:16 +08:00
build_ios: Get gj_common if it doesn't exist
This commit is contained in:
@ -26,6 +26,13 @@ if [ ! -d "ios/libs" ]; then
|
|||||||
unzip libs.zip
|
unzip libs.zip
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Place gj_common
|
||||||
|
if [ ! -L "gj_common" ]; then
|
||||||
|
echo "=> gj_common doesn't exist. Cloning"
|
||||||
|
git clone https://github.com/GitJournal/git_bindings.git
|
||||||
|
ln -s git_bindings/gj_common gj_common
|
||||||
|
fi
|
||||||
|
|
||||||
flutter build ios --release
|
flutter build ios --release
|
||||||
|
|
||||||
cd ios
|
cd ios
|
||||||
|
Reference in New Issue
Block a user