since the installer upload got more complex (needing to chmod files before
rsyncing) I promoted it to a makefile target, simplifying the buildbot steps
involved
fakeroot debian/rules binary
# These targets provide for windows native builds
-.PHONY: hatch-eggs windows-exe windows-installer
+.PHONY: hatch-eggs windows-exe windows-installer windows-installer-upload
hatch-eggs:
$(PP) $(PYTHON) misc/hatch-eggs.py
$(PP) $(PYTHON) misc/sub-ver.py windows/installer.tmpl >windows/installer.iss
cd windows && "$(INNOSETUP)" /cc installer.iss
+windows-installer-upload:
+ chmod -R o+rx windows/dist/installer
+ rsync -av -e /usr/bin/ssh windows/dist/installer/ amduser@dev:/home/amduser/public_html/dist/tahoe/windows/
+
+