Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 3149e7e2051bc2272922c99558e45fba24432548)
+++ Jenkinsfile	(revision cf95f94f6600f5ccbc0fb79d4fcfb3c90e840a7a)
@@ -87,5 +87,13 @@
 		status_prefix = 'Documentation'
 
-		// sh 'make -C src/benchmark csv-data >> /u/cforall/public_html/perf-history/concurrency.csv'
+		//We can't just write to a file outside our repo
+		//Copy the file locally using ssh
+		sh 'scp plg2.cs.uwaterloo.ca:/u/cforall/public_html/perf-history/concurrency.csv bench.csv'
+
+		//Then append to the local file
+		sh 'make -C src/benchmark csv-data >> bench.csv'
+
+		//Then publish the file again
+		sh 'scp bench.csv plg2.cs.uwaterloo.ca:/u/cforall/public_html/perf-history/concurrency.csv'		
 }
 
