Browse Source

Merge pull request #37 from gorgone/next

Next
pull/41/head
Gorgone 5 years ago
committed by GitHub
parent
commit
8868c02123
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      support/functions/_update

4
support/functions/_update

@ -14,7 +14,7 @@ update_me(){
fi
online_revision=$(gitrevision $s3url)
if [ ! $local_revision == $online_revision ]
if [ ! "$local_revision" == "$online_revision" ]
then
printf " update s3_git to\n Local Revision: $online_revision\n"
svn -q checkout "$s3url" "$s3local"
@ -43,7 +43,7 @@ update_emu(){
fi
online_revision=$(gitrevision $emuurl)
if [ ! $local_revision == $online_revision ]
if [ ! "$local_revision" == "$online_revision" ]
then
printf " update emu_git to\n Local Revision: $online_revision\n"
svn -q checkout "$emuurl" "$emulocal"

Loading…
Cancel
Save