diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-08-14 03:24:03 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-08-14 03:24:03 (GMT) |
commit | af7e8320e2d0fda0e2b8505f50080ff3d33e7531 (patch) | |
tree | 1f86b3b541a0e7b5b22e5f1f11dcf5a753a9eb61 /scripts | |
parent | 0dd0a262f9baf305f514a210f8e8655f1348891b (diff) |
more migration from google-code to files.openscad.org
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/builder.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/builder.sh b/scripts/builder.sh index 8fc1372..38a235e 100755 --- a/scripts/builder.sh +++ b/scripts/builder.sh @@ -148,15 +148,24 @@ upload_win64() read_username_from_user() { if [ $DRYRUN ]; then USERNAME=none;export USERNAME; return; fi + echo 'Google code upload is deprecated' + USERNAME=$USER + echo 'username is ' $USERNAME + return + echo 'Please enter your username for https://code.google.com/hosting/settings' echo -n 'Username:' read USERNAME echo 'username is ' $USERNAME + return } read_password_from_user() { if [ $DRYRUN ]; then return; fi + echo 'Google code upload is deprecated' + return + echo 'Please enter your password for https://code.google.com/hosting/settings' echo -n 'Password:' read -s PASSWORD1 @@ -180,7 +189,7 @@ update_win_www_download_links() cd inc echo `pwd` # BASEURL='https://openscad.googlecode.com/files/' - BASEURL='http://files.openscad.org' + BASEURL='http://files.openscad.org/' DATECODE=`date +"%Y.%m.%d"` rm win_snapshot_links.js |