diff options
-rwxr-xr-x | src/bin/am | 3 | ||||
-rw-r--r-- | version.log | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/bin/am b/src/bin/am index fe4b75551..3ee455c29 100755 --- a/src/bin/am +++ b/src/bin/am @@ -329,7 +329,8 @@ sub do_put() { $ctrlfile = "$dst/$fhint"; # Grab the current revision number. Clunky way, I know! - $ver_revision=`$wget -qO - $svnrev`; +# $ver_revision=`$wget -qO - $svnrev`; + $ver_revision=`svnversion . | cut -d 'M' -f 1`; chomp($ver_revision); unless ($ver_revision =~ /^\d+/ and $ver_revision > 0) diff --git a/version.log b/version.log index d7aaa7431..002ce19c8 100644 --- a/version.log +++ b/version.log @@ -14,6 +14,10 @@ VERSION_BUILD="1258" # $Log$ # # BUILD : 1.7.19 (1258) +# BUGS : +# NOTES : Quick fix to src/bin/am to make it work (sort of) again... +# +# BUILD : 1.7.19 (1258) # BUGS : 750 # NOTES : Fixed CA_AUTODEOP not working anymore (since 1.7.9 or so probably) # |