mirror of
				https://github.com/zulip/zulip-desktop.git
				synced 2025-10-31 12:03:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| set -e
 | |
| set -x
 | |
| 
 | |
| echo "Removing node_modules and app/node_modules"
 | |
| rm -rf node_modules
 | |
| rm -rf app/node_modules
 | |
| 
 | |
| echo "node_modules removed reinstalling npm packages"
 | |
| npm i
 |