From: Guido Trotter Date: Mon, 26 Jan 2009 15:58:26 +0000 (+0000) Subject: devel/upload: add a missing wait X-Git-Tag: v0.6~1 X-Git-Url: http://git.equinoxoli.org/?p=ext%2Finstance-debootstrap.git;a=commitdiff_plain;h=a08634dff24d96fc8aa1ddd4ca8ee52f664ca437 devel/upload: add a missing wait Without this the script exits, and removes the temporary directory, before rsync is done. Reviewed-by: iustinp --- diff --git a/devel/upload b/devel/upload index 5205840..55e906a 100755 --- a/devel/upload +++ b/devel/upload @@ -61,4 +61,5 @@ for host; do echo Uploading code to ${host}... rsync -v -rlDc ${TXD}/* root@${host}:/ & done +wait