From 6a6e4358553428af1de4bca862266e10df023da3 Mon Sep 17 00:00:00 2001 From: Harald Glatt Date: Sun, 21 Jul 2013 08:17:51 +0200 Subject: [PATCH] Switch from /bin/sh to /bin/bash You have bashisms in your script and /bin/sh might not always be bash. In that case the script would fail (for example on Ubuntu). --- nvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvm.sh b/nvm.sh index e2de24b..08f4ddb 100755 --- a/nvm.sh +++ b/nvm.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Node Version Manager # Implemented as a bash function