From 209a118833d7a47137cdcc8e420c6181ef47088d Mon Sep 17 00:00:00 2001 From: Kory Prince Date: Wed, 28 Mar 2018 18:18:48 -0500 Subject: [PATCH] Remove extra quoting to resolve issues on macOS (#1039) --- script/build_markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/build_markdown b/script/build_markdown index cf35f0b933..ac4f6de7a1 100755 --- a/script/build_markdown +++ b/script/build_markdown @@ -34,7 +34,7 @@ for pkg in $pkgs; do */ EOF echo "Downloading $name@$version" - echo "$(curl -s "$tarball" | tar -xzO "package/$js_path" | ./node_modules/.bin/uglifyjs -c -m)" >> $output + curl -s "$tarball" | tar -xzO "package/$js_path" | ./node_modules/.bin/uglifyjs -c -m >> $output done echo "" >> $output