mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	Create cli-space-cleanup.sh
This commit is contained in:
		
							parent
							
								
									72e1125c63
								
							
						
					
					
						commit
						a8105f058d
					
				
							
								
								
									
										9
									
								
								.github/cli-space-cleanup.sh
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								.github/cli-space-cleanup.sh
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
removePacks=( '^llvm-.*' 'php.*' '^mongodb-.*' '^mysql-.*' '^dotnet-sdk-.*' 'azure-cli' 'google-cloud-cli' 'google-chrome-stable' 'firefox' 'powershell*' 'microsoft-edge-stable' 'mono-devel' )
 | 
			
		||||
for pack in "${removePacks[@]}"; do
 | 
			
		||||
  echo "REMOVING ${pack}"
 | 
			
		||||
  sudo apt-get purge -y $pack || true
 | 
			
		||||
done
 | 
			
		||||
sudo apt-get autoremove -y
 | 
			
		||||
sudo apt-get clean
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user