Skip to content

Commit

Permalink
Fixed a small error introduced in #90
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsNielsen committed Apr 26, 2017
1 parent a5fdae9 commit e0c3a59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pac.rb
Expand Up @@ -7,8 +7,8 @@

doc = <<DOCOPT
Usage:
#{__FILE__} from <oldest-ref> [--to <newest-ref>] [options] [-v...] [-q...] [-c (<user> <password> <target>)]...
#{__FILE__} from-latest-tag <approximation> [--to <newest-ref>] [options] [-v...] [-q...] [-c (<user> <password> <target>)]...
#{__FILE__} from <oldest-ref> [--to=<newest-ref>] [options] [-v...] [-q...] [-c (<user> <password> <target>)]...
#{__FILE__} from-latest-tag <approximation> [--to=<newest-ref>] [options] [-v...] [-q...] [-c <user> <password> <target>]...
#{__FILE__} -h|--help
Options:
Expand Down Expand Up @@ -45,7 +45,7 @@ def version
if File.exist?(dir+'/version.stamp')
version = File.read(dir+'/version.stamp')
else
version = "Unknown version"
version = "Version "+File.read(dir+'/version.properties').split("=")[1]
end
version
end
Expand Down

0 comments on commit e0c3a59

Please sign in to comment.