1
mirror of https://github.com/home-assistant/frontend synced 2024-09-12 05:34:56 +02:00

Remove extra quoting to resolve issues on macOS (#1039)

This commit is contained in:
Kory Prince 2018-03-28 18:18:48 -05:00 committed by Paulus Schoutsen
parent 0790cd1ac9
commit 209a118833

View File

@ -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 "</script>" >> $output