Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion walle/service/deployer.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def init_repo(self):

def cleanup_local(self):
# clean local package
command = 'rm -rf {project_id}_{task_id}_*'.format(project_id=self.project_info['id'], task_id=self.task_id)
command = 'rm -rf {project_id}*'.format(project_id=self.project_info['id'])
with self.localhost.cd(self.local_codebase):
result = self.localhost.local(command, wenv=self.config())

Expand Down