From 7443121a9cbea713e686487cc618cbc3ed90dc97 Mon Sep 17 00:00:00 2001
From: robk-tahoe <robk-tahoe@allmydata.com>
Date: Wed, 16 Jan 2008 20:29:30 -0700
Subject: [PATCH] simplify buildbot upload of windows installer

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
---
 Makefile | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 5ef5b428..d71ba68d 100644
--- a/Makefile
+++ b/Makefile
@@ -418,7 +418,7 @@ deb-gutsy-head:
 	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
@@ -430,3 +430,8 @@ windows-installer: windows-exe
 	$(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/
+
+
-- 
2.45.2