From 744240da50b8e7685bd30f7888100484b65eafb9 Mon Sep 17 00:00:00 2001 From: Christopher Young Date: Mon, 23 May 2016 11:27:50 -0400 Subject: [PATCH] Typo. --- selfupdate/process_builds.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfupdate/process_builds.sh b/selfupdate/process_builds.sh index 6c294680..7fddd3fd 100755 --- a/selfupdate/process_builds.sh +++ b/selfupdate/process_builds.sh @@ -10,7 +10,7 @@ ssh -i ~/.ssh/id_rsa.updates stratux-updates@updates.stratux.me 'ls -1 queue/' | cd .. for fl in `ls -1 work/update*.sh | cut -d/ -f2` do - scp -i ~/.ssh/id_rsa.updates $fl stratux-updates@updates.stratux.me:uploading/ + scp -i ~/.ssh/id_rsa.updates work/${fl} stratux-updates@updates.stratux.me:uploading/ ssh -i ~/.ssh/id_rsa.updates stratux-updates@updates.stratux.me "mv uploading/${fl} finished/" done cd ..