mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
16 lines
239 B
Plaintext
16 lines
239 B
Plaintext
|
#!/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
|
||
|
|