diff options
-rw-r--r-- | doc/release-checklist.txt | 1 | ||||
-rwxr-xr-x | scripts/builder.sh | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/release-checklist.txt b/doc/release-checklist.txt index 6eb5e3f..d239278 100644 --- a/doc/release-checklist.txt +++ b/doc/release-checklist.txt @@ -44,6 +44,7 @@ o git push --tags o Upload Source package $ ./scripts/googlecode_upload.py -s 'Source Code' -p openscad -l Featured,Type-Source openscad-$VERSION.src.tar.gz + $ scp openscad-$VERSION.src.tar.gz openscad@files.openscad.org:www o Remove VERSION environment variable $ unset VERSION diff --git a/scripts/builder.sh b/scripts/builder.sh index 6aa9f79..b00919f 100755 --- a/scripts/builder.sh +++ b/scripts/builder.sh @@ -11,6 +11,9 @@ # todo - make linux work # # todo - detect failure and stop +# +# todo - generalize to build release binaries as well +# init_variables() { @@ -204,6 +207,9 @@ update_win_www_download_links() fi } +# FIXME: We might be running this locally and not need an ssh agent. +# Before checking $SSH_AUTH_SOCK, try 'ssh -T git@github.com' to verify that we +# can access github over ssh check_ssh_agent() { if [ $DRYRUN ]; then echo 'skipping ssh, dry run'; return; fi |