Index: /issm/trunk/packagers/win10/package64.sh
===================================================================
--- /issm/trunk/packagers/win10/package64.sh	(revision 23325)
+++ /issm/trunk/packagers/win10/package64.sh	(revision 23326)
@@ -52,5 +52,27 @@
 ls -lah $TARBALL_NAME
 
+# Ship binaries to website
+echo "Shipping binaries to website"
 
-#To upload to website:
-scp $TARBALL_NAME websites:/home/larour/files/$TARBALL_NAME
+# We're using public key authentication method to upload the tarball The
+# following lines check to see if the SSH Agent is running. If not, then it is
+# started and relevant information is forwarded to a script.
+pgrep "ssh-agent" > /dev/null
+
+if [ $? -ne 0 ]; then
+	echo "SSH agent is not running. Starting it..."
+	ssh-agent > ~/.ssh/agent.sh
+else
+	echo "SSH agent is running..."
+fi
+
+source ~/.ssh/agent.sh
+ssh-add ~/.ssh/win_bins-geidi_prime_to_ross
+
+scp $TARBALL_NAME jenkins@ross.ics.uci.edu:/var/www/html/$TARBALL_NAME
+
+if [ $? -ne 0 ]; then
+	echo "The upload failed."
+	echo "Perhaps the SSH agent was started by some other means."
+	echo "Try killing the agent and running again."
+fi
