Skip to content

Commit

Permalink
this could be the one
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan P.C. McQuen committed Oct 16, 2014
1 parent 6cb3961 commit 402e4b1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions image-ultima-fy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ case $response in
esac

if [ $BACKUPIMAGES = true ]; then
mkdir -pv ../original-image-files/
rsync -arE *.jpg ../original-image-files/
rsync -arE *.png ../original-image-files/
mkdir -pv original-image-files/
rsync -arE *.jpg original-image-files/
rsync -arE *.png original-image-files/
## rsync doesn't like syncing to a higher directory,
## so we just move stuff
mv original-image-files/ ../original-image-files/
fi

if [ "$( uname -s )" = Darwin ]; then
Expand Down

0 comments on commit 402e4b1

Please sign in to comment.