matrix-dart-sdk/scripts/prepare.sh

8 lines
96 B
Bash
Executable File

#!/usr/bin/env bash
if which flutter >/dev/null; then
flutter pub get
else
dart pub get
fi