Skip to content

Commit

Permalink
[fix] Readme for the new features
Browse files Browse the repository at this point in the history
  • Loading branch information
matlink committed Mar 21, 2017
1 parent 61ed5aa commit 562b53f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ GPlayCli is a command line tool to search, install, update Android applications
Update all APKs in a given folder
-f FOLDER, --folder FOLDER
Where to put the downloaded Apks, only for -d command
-t, --token Instead of classical credentials, use the tokenize
version
-tu TOKEN_URL, --token-url TOKEN_URL
Use the given tokendispenser URL to retrieve a token
-v, --verbose Be verbose
-c CONF_FILE, --config CONF_FILE
Use a different config file than credentials.conf
Expand Down
2 changes: 1 addition & 1 deletion gplaycli/gplaycli.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def main():
parser.add_argument('-f', '--folder', action='store', dest='dest_folder', metavar="FOLDER", nargs=1,
type=str, default=".", help="Where to put the downloaded Apks, only for -d command")
parser.add_argument('-t', '--token', action='store_true', dest='token', default=False, help='Instead of classical credentials, use the tokenize version')
parser.add_argument('-tu', '--token-url', action='store', dest='token_url', metavar="TOKEN",
parser.add_argument('-tu', '--token-url', action='store', dest='token_url', metavar="TOKEN_URL",
type=str, default="DEFAULT_URL", help="Use the given tokendispenser URL to retrieve a token")
parser.add_argument('-v', '--verbose', action='store_true', dest='verbose', help='Be verbose')
parser.add_argument('-c', '--config', action='store', dest='config', metavar="CONF_FILE", nargs=1,
Expand Down

0 comments on commit 562b53f

Please sign in to comment.