Skip to content

Commit 2b15bb7

Browse files
committed
fixing dist folder
1 parent 121f9a2 commit 2b15bb7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builder-tool/src/builderTool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ def runCommand(self, command : str, hideOutput = True, debugArg = "", deepDebugA
179179
Default value for deepDebugArg is the same as debugArg
180180
"""
181181
if self.debugLevel == LEVELS.DEBUG:
182-
command += debugArg
182+
command += " " + debugArg
183183
elif self.debugLevel == LEVELS.DEEP_DEBUG:
184-
command += deepDebugArg if deepDebugArg is not None else debugArg
184+
command += " " + (deepDebugArg if deepDebugArg is not None else debugArg)
185185
Logger.debug(f'Executing command {command}\n working directory: {self.tempDir}')
186186
if hideOutput:
187187
stdoutFile, stdoutPath = mkstemp()

0 commit comments

Comments
 (0)