summaryrefslogtreecommitdiff
path: root/ick
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-05-31 17:48:07 +0300
committerLars Wirzenius <liw@liw.fi>2015-05-31 17:48:07 +0300
commit87099a2452c30227d4a60c65cf9251271ceef64c (patch)
treeb65ab57cbbc1fd066ee37eb748a9a282f80ac417 /ick
parentd360868abd990f3858afe45a5baa3157cd85d0d9 (diff)
downloadick-87099a2452c30227d4a60c65cf9251271ceef64c.tar.gz
Fix ssh address (bug left from refactoring)
Diffstat (limited to 'ick')
-rwxr-xr-xick3
1 files changed, 2 insertions, 1 deletions
diff --git a/ick b/ick
index 46aa7bf..2203a67 100755
--- a/ick
+++ b/ick
@@ -135,7 +135,8 @@ class Ick(cliapp.Application):
for command in project.commands:
self.run_on_target(target, command, remote_git_dir)
except cliapp.AppException:
- cliapp.ssh_runcmd(address, ['rm', '-rf', remote_git_dir])
+ cliapp.ssh_runcmd(
+ target.address, ['rm', '-rf', remote_git_dir])
raise
def rsync_to_target(self, source, target):