You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							399 B
						
					
					
				
			
		
		
	
	
							20 lines
						
					
					
						
							399 B
						
					
					
				| #!/bin/sh | |
|  | |
| set -ex | |
|  | |
| die () { echo "$@" ; exit 1; } | |
|  | |
| set +e # TODO: fix | |
| \. ../../../nvm.sh | |
| set -e | |
|  | |
| BIN="$(nvm_get_checksum_binary)" | |
|  | |
| case "${BIN-}" in | |
|   sha256sum | shasum | sha256 | gsha256sum | openssl | bssl | sha1sum | sha1 | shasum) | |
|     echo "${BIN} found" | |
|   ;; | |
|   *) | |
|     die "sha256sum | shasum | sha256 | gsha256sum | openssl | bssl | sha1sum | sha1 | shasum not found: found ${BIN}" | |
|   ;; | |
| esac
 | |
| 
 |