Skip to content

Commit

Permalink
Fix file name error on update script
Browse files Browse the repository at this point in the history
  • Loading branch information
gcollazo committed Oct 17, 2019
1 parent 45180aa commit c91029a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ tar xvzf /tmp/mongodb.tgz -C /tmp

# move files
echo " -- Moving files to $(pwd)/Vendor/mongodb/"
mv /tmp/mongodb-osx-x86_64-*/* Vendor/mongodb
mv /tmp/mongodb-macos-x86_64-*/* Vendor/mongodb

# cleanup
echo " -- Removing /tmp/mongodb.tgz"
rm /tmp/mongodb.tgz

echo " -- Removing /tmp/mongodb-osx-x86_64-*"
rm -r /tmp/mongodb-osx-x86_64-*
echo " -- Removing /tmp/mongodb-macos-x86_64-*"
rm -r /tmp/mongodb-macos-x86_64-*

echo " -- Download completed!"

Expand Down

0 comments on commit c91029a

Please sign in to comment.