Skip to content

Commit

Permalink
use absolute path for curl (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbyquaker committed Apr 2, 2019
1 parent 8e51f57 commit bf01a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon_files/redmatic/bin/redmatic-pkg
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function install()

echo "Get $URL"
set -o pipefail
curl $URL -o $ADDON_DIR/tmp/$1.tar.gz --fail --silent --show-error --location || exit 1
/usr/bin/curl $URL -o $ADDON_DIR/tmp/$1.tar.gz --fail --silent --show-error --location || exit 1

rm -r $ADDON_DIR/lib/node_modules/$PACKAGE 2> /dev/null

Expand Down

0 comments on commit bf01a19

Please sign in to comment.