From 487c69c0d718ccd435dd71c848054414f2993578 Mon Sep 17 00:00:00 2001 From: Joseph Werle Date: Thu, 22 May 2014 15:56:13 -0400 Subject: [PATCH] escape quote --- lib/install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install/install.sh b/lib/install/install.sh index 51f1114..73d7665 100755 --- a/lib/install/install.sh +++ b/lib/install/install.sh @@ -115,7 +115,7 @@ bpkg_install () { } ## get package name from `package.json' - name="$(echo -n ${json} | bpkg-json -b | grep 'name' | awk '{ print $2 }' | tr -d '"')" + name="$(echo -n ${json} | bpkg-json -b | grep 'name' | awk '{ print $2 }' | tr -d '\"')" if [ "${#scripts[@]}" -gt "0" ]; then ## make `deps/' directory if possible