mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2025-02-20 18:03:01 +01:00
15 lines
239 B
Bash
15 lines
239 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# Flutter
|
|
# https://github.com/flutter/flutter/issues/73657
|
|
flutter_conf=/home/vagrant/.flutter
|
|
cat <<EOF > $flutter_conf
|
|
{
|
|
"enabled": false
|
|
}
|
|
EOF
|
|
chown -R vagrant:vagrant $flutter_conf
|
|
chmod -R 0644 $flutter_conf
|
|
|