Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Gehrig committed Jan 2, 2016
1 parent 2e2fe2f commit db87a35
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions update.sh
Expand Up @@ -84,10 +84,11 @@ chmod 0754 /usr/local/gpx/bin/*
##################################################################

# Run this update script
if [ -f ./updates/$remote_version.sh ]; then
echo "Running $(cwd)/updates/$remote_version.sh ..."
chmod +x ./updates/3.0.15.sh
./updates/3.0.15.sh
upd_file="updates/$remote_version.sh"
if [ -f $upd_file ]; then
echo "Running ./$upd_file ..."
chmod +x ./$upd_file
./$upd_file
fi

##################################################################
Expand Down

0 comments on commit db87a35

Please sign in to comment.