mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 10:15:53 +08:00 
			
		
		
		
	added additional options for compiling node
This commit is contained in:
		
							
								
								
									
										14
									
								
								nvm.sh
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								nvm.sh
									
									
									
									
									
								
							| @@ -108,11 +108,21 @@ nvm() | ||||
|         echo 'NVM Needs curl to proceed.' >&2; | ||||
|       fi | ||||
|  | ||||
|       if [ $# -ne 2 ]; then | ||||
|       if [ $# -le 2 ]; then | ||||
|         nvm help | ||||
|         return | ||||
|       fi | ||||
|       VERSION=`nvm_version $2` | ||||
|       ADDITIONAL_PARAMETERS='' | ||||
|       shift | ||||
|       shift | ||||
|       while [ $# -ne 0 ] | ||||
|       do | ||||
|         ADDITIONAL_PARAMETERS="$ADDITIONAL_PARAMETERS $1" | ||||
|         shift | ||||
|       done | ||||
|  | ||||
|       echo "Additional options while compiling: $ADDITIONAL_PARAMETERS" | ||||
|  | ||||
|       [ -d "$NVM_DIR/$VERSION" ] && echo "$VERSION is already installed." && return | ||||
|  | ||||
| @@ -129,7 +139,7 @@ nvm() | ||||
|         curl -C - --progress-bar $tarball -o "node-$VERSION.tar.gz" && \ | ||||
|         tar -xzf "node-$VERSION.tar.gz" && \ | ||||
|         cd "node-$VERSION" && \ | ||||
|         ./configure --prefix="$NVM_DIR/$VERSION" && \ | ||||
|         ./configure --prefix="$NVM_DIR/$VERSION" $ADDITIONAL_PARAMETERS && \ | ||||
|         make && \ | ||||
|         rm -f "$NVM_DIR/$VERSION" 2>/dev/null && \ | ||||
|         make install | ||||
|   | ||||
		Reference in New Issue
	
	Block a user