This commit is contained in:
enforcer007
2023-02-20 15:30:36 +00:00
parent 689e54516d
commit d08fa1fb11
5 changed files with 102 additions and 6 deletions

19
.devcontainer/setup.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -e
case $1 in
android)
# install deps
cd $WORKDIR/flutter
flutter pub get
wget https://github.com/rustdesk/doc.rustdesk.com/releases/download/console/so.tar.gz
tar xzf so.tar.gz
rm so.tar.gz
sudo chown -R $(whoami) $ANDROID_HOME
echo "Setup is Done."
;;
linux)
echo "Linux Setup"
;;
esac