Skip to content

Commit

Permalink
Merge pull request #60 from vanadinit/fix-manual-steps
Browse files Browse the repository at this point in the history
HOTFIX: Manual steps always failing
  • Loading branch information
sschmachtel authored Apr 15, 2024
2 parents ad38b29 + 0be30b7 commit 893997d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automatix/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def _execute(self, interactive: bool = False, force: bool = False):

answer = self._ask_user(question='[MS] Proceed?', allowed_options=['p', 's', 'R', 'a'])
# answers 'a', 'c' and 'R' are handled by _ask_user, 'p' means just pass
if answer == 's':
if answer == 's' or self.get_type() == 'manual':
return

steptime = time()
Expand Down

0 comments on commit 893997d

Please # to comment.