mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 18:25:52 +08:00 
			
		
		
		
	* Make the creation of a symlink an overridable default behaviour
This commit is contained in:
		
							
								
								
									
										4
									
								
								nvm.sh
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								nvm.sh
									
									
									
									
									
								
							| @@ -647,7 +647,9 @@ nvm() { | |||||||
|       export NODE_PATH |       export NODE_PATH | ||||||
|       export NVM_PATH="$NVM_VERSION_DIR/lib/node" |       export NVM_PATH="$NVM_VERSION_DIR/lib/node" | ||||||
|       export NVM_BIN="$NVM_VERSION_DIR/bin" |       export NVM_BIN="$NVM_VERSION_DIR/bin" | ||||||
|       rm -f "$NVM_DIR/current" && ln -s "$NVM_VERSION_DIR" "$NVM_DIR/current" |       if [ "$NVM_SYMLINK_CURRENT" = true ] || [ -z "$NVM_SYMLINK_CURRENT" ]; then | ||||||
|  |         rm -f "$NVM_DIR/current" && ln -s "$NVM_VERSION_DIR" "$NVM_DIR/current" | ||||||
|  |       fi | ||||||
|       echo "Now using node $VERSION" |       echo "Now using node $VERSION" | ||||||
|     ;; |     ;; | ||||||
|     "run" ) |     "run" ) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user