diff --git a/continuous-integration/executeRemoteMicroBenchmark.sh b/continuous-integration/executeRemoteMicroBenchmark.sh
index 5b974667aee6659ef2eba1002cd0f1586fcf7ebc..52ef33da90d3623dd4639f1a84c0a59ae0c228d7 100644
--- a/continuous-integration/executeRemoteMicroBenchmark.sh
+++ b/continuous-integration/executeRemoteMicroBenchmark.sh
@@ -30,6 +30,10 @@ scp ${REMOTE_NODE}:MooBench/tmp/${RESULTS_FOLDER_NAME}/results-text.csv ${RESULT
 # Save up to 100 results from previous benchmarks on the remote node and clean up
 ssh ${REMOTE_NODE} "cp MooBench/tmp/${RESULTS_FOLDER_NAME}/results.zip old-results --backup=t; exit"
 ssh ${REMOTE_NODE} "cd old-results; ls -A1t | sed -e '1,100d' | xargs -d '\n' rm; exit"
-ssh ${REMOTE_NODE} 'mv old-results /tmp/; exit'
 ssh ${REMOTE_NODE} 'rm -rf MooBench; exit'
-ssh ${REMOTE_NODE} 'mv /tmp/old-results .; exit'
+
+# Workaround for Solaris
+# BACKUP_FOLDER_NAME="$(date +%Y-%m-%d-%H-%M-%S)"
+# ssh ${REMOTE_NODE} "mkdir old-results/${BACKUP_FOLDER_NAME}; cp MooBench/tmp/${RESULTS_FOLDER_NAME}/results.zip old-results/${BACKUP_FOLDER_NAME}/; exit"
+# ssh ${REMOTE_NODE} "cd old-results; ls -A1t | sed -e '1,100d' | xargs -d '\n' rm -rf; exit"
+# ssh ${REMOTE_NODE} 'rm -rf MooBench; exit'
\ No newline at end of file