mirror of
				https://github.com/f-droid/fdroidserver.git
				synced 2025-11-04 14:30:30 +03: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
 | 
						|
 |