mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-28 01:02:30 -04:00 
			
		
		
		
	Merge pull request #519 from return42/fix-make-clean
[fix] make nvm.clean - don't raise error when NVM is not installed
This commit is contained in:
		
						commit
						be793f7612
					
				| @ -120,14 +120,17 @@ nvm.install() { | ||||
| 
 | ||||
| nvm.clean() { | ||||
|     if ! nvm.is_installed; then | ||||
|         info_msg "NVM is not installed" | ||||
|         return 42 | ||||
|         build_msg CLEAN "[NVM] not installed" | ||||
|         return | ||||
|     fi | ||||
|     if ! nvm.is_local; then | ||||
|         info_msg "can't remove NVM from ${NVM_DIR}" | ||||
|         return 42 | ||||
|         build_msg CLEAN "[NVM] can't remove nvm from ${NVM_DIR}" | ||||
|         return | ||||
|     fi | ||||
|     if [ -n "${NVM_DIR}" ]; then | ||||
|         build_msg CLEAN "[NVM] drop $(realpath --relative-to=. "${NVM_DIR}")/" | ||||
|         rm -rf "${NVM_DIR}" | ||||
|     fi | ||||
|     rm -rf "${NVM_DIR}" | ||||
| } | ||||
| 
 | ||||
| nvm.status(){ | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user