diff options
author | Yaohan Chen <yaohan.chen@gmail.com> | 2014-04-01 10:45:28 -0400 |
---|---|---|
committer | Yaohan Chen <yaohan.chen@gmail.com> | 2014-04-01 10:45:28 -0400 |
commit | 4bee69cb5c9a5260b706f769f175818b322f5d26 (patch) | |
tree | 19fd670dd066d7d2384378a95fb824202d11cf29 /hib-dlagent | |
parent | 23fcf1acc62e0f32f479c12c1916b2b1dd922199 (diff) | |
download | hib-dlagent-4bee69cb5c9a5260b706f769f175818b322f5d26.tar.gz hib-dlagent-4bee69cb5c9a5260b706f769f175818b322f5d26.zip |
Remove the login function/script
The discover-url script can handle login by itself, so it saves time
to just skip visiting the login page.
Diffstat (limited to 'hib-dlagent')
-rwxr-xr-x | hib-dlagent | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/hib-dlagent b/hib-dlagent index 5c6a8a5..e67c86c 100755 --- a/hib-dlagent +++ b/hib-dlagent @@ -17,15 +17,6 @@ PASSWORD= KEYS=() STORAGE= -login() { - if [ -z "$PASSWORD" ]; then - read -rsp 'Enter Humble account password: ' PASSWORD - echo - fi - phantomjs --config="$CONFIG_PATH"/phantomjs-config.json --cookies-file="$COOKIE_JAR" \ - "$SCRIPT_PATH"/login.coffee "$LOGIN_PAGE" "$USERNAME" "$PASSWORD" -} - discover_url() { local LISTING_PAGE="$1" phantomjs --config="$CONFIG_PATH"/phantomjs-config.json --cookies-file="$COOKIE_JAR" \ @@ -66,7 +57,6 @@ handle_download() { COOKIE_JAR=$(mktemp) if [ -n "$USERNAME" ]; then - login LISTING_PAGES+=("$HOME_PAGE") fi |