summaryrefslogtreecommitdiff
path: root/src/Propellor
diff options
context:
space:
mode:
authorJoey Hess2014-11-22 20:42:31 -0400
committerJoey Hess2014-11-22 20:42:31 -0400
commit1338f4effda3293356e493a375e912d3821b6069 (patch)
treec6f244e14d13441e017d134803555a94853f60d1 /src/Propellor
parent58b5de78020f65ec54ba3ddb20741d9bf9906ad6 (diff)
don't remove old localdir before tarball unpack
it may get messy if old stuff is left, but there is state in there
Diffstat (limited to 'src/Propellor')
-rw-r--r--src/Propellor/Spin.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Propellor/Spin.hs b/src/Propellor/Spin.hs
index cffa7610..6add4f9f 100644
--- a/src/Propellor/Spin.hs
+++ b/src/Propellor/Spin.hs
@@ -237,7 +237,6 @@ sendPrecompiled hn = void $ actionMessage ("Uploading locally compiled propellor
unpackcmd = shellWrap $ intercalate " && "
[ "cd " ++ takeDirectory remotetarball
- , "rm -rf " ++ localdir
, "tar xzf " ++ remotetarball
, "rm -f " ++ remotetarball
]