forked from coolaj86/node-installer.sh
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			634 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			634 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| TMP_FILE='/tmp/node-installer-new.sh'
 | |
| 
 | |
| set -e
 | |
| rm -rf /tmp/node-installer-new.sh
 | |
| 
 | |
| echo "Downloading and running the new installer script from https://git.daplie.com/coolaj86/node-install-script/raw/master/setup.bash"
 | |
| 
 | |
| SETUP_URL='https://git.daplie.com/coolaj86/node-install-script/raw/master/setup.bash'
 | |
| 
 | |
| 
 | |
| if [ -n "$(which curl)" ]; then
 | |
|   curl --silent "$SETUP_URL" \
 | |
|     -o "$TMP_FILE" || echo 'error downloading newer deps script:' "$SETUP_URL"
 | |
|     
 | |
| elif [ -n "$(which wget)" ]; then
 | |
|   wget --quiet "$SETUP_URL" \
 | |
|     -O "$TMP_FILE" || echo 'error downloading newer deps script:' "$SETUP_URL"
 | |
| fi
 | |
| 
 | |
| set +e
 | |
| 
 | |
| bash $TMP_FILE |