Skip to content

Commit 79dac97

Browse files
committed
Fix two typos [minor]
1 parent 9f5a2a0 commit 79dac97

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/util/run.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ proc runProjvar*(projRoot: string) : TableRef[string, string] =
106106
process.close()
107107
debug fmt"'{PROJVAR_CMD}' run done."
108108
if exCode == 0:
109-
debug fmt"'{PROJVAR_CMD}' ran successsfully."
109+
debug fmt"'{PROJVAR_CMD}' ran successfully."
110110
if debug:
111111
os.copyFileWithPermissions(outFilePath, "/tmp/projvar_out_oshTool_fixed_debugging.json")
112112
let jsonRoot = parseJson(newFileStream(outFilePath), outFilePath)
@@ -142,7 +142,7 @@ proc runOshDirStd*(projRoot: string, args: openArray[string], fileListing: seq[s
142142
debug fmt" {OSH_DIR_STD_TOOL_CMD}: Ask for exit code and stdout ..."
143143
let (lines, exCode) = process.readLines()
144144
process.close()
145-
debug fmt" {OSH_DIR_STD_TOOL_CMD}: Run finnished; analyze results ..."
145+
debug fmt" {OSH_DIR_STD_TOOL_CMD}: Run finished; analyze results ..."
146146
if exCode == 0:
147147
debug fmt" {OSH_DIR_STD_TOOL_CMD}: Process output ..."
148148
let jsonLines = lines.join("\n")

0 commit comments

Comments
 (0)