Skip to content

Commit

Permalink
scripts: Fix extraction destination
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Mar 26, 2020
1 parent 576a738 commit bd9f669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/osx/install_deps.sh
Expand Up @@ -96,7 +96,7 @@ for i in $(dirname $0)/deps/*.tar.gz; do
if [ ! -e "$d" ]; then
echo "Extracting $b to $d"
sudo -Es mkdir "$d" || exit 1
sudo -Es tar -xzf $i -C "$d" || exit 1
sudo -Es tar -xzf $i -C "/usr/local" || exit 1
else
echo "Skipping $b, already installed"
fi
Expand Down

0 comments on commit bd9f669

Please sign in to comment.