Skip to content

Commit 4874c63

Browse files
committed
fixing issue
1 parent c121d30 commit 4874c63

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

builder-tool/src/builderTool.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ def __run(self, configuredSteps : list[str]):
238238
for step in self.__steps:
239239
if step not in configuredSteps:
240240
self.__steps[step] = self.Status.DISABLED
241-
self.__remainingSteps.remove(step)
241+
if step in self.__remainingSteps:
242+
self.__remainingSteps.remove(step)
242243
Logger.debug('Step "' + step + '" disabled')
243244

244245

0 commit comments

Comments
 (0)