From 1114b7edbe02bb775bc7bf1c590caf5abecf08cd Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Wed, 10 Apr 2019 11:46:45 -0500 Subject: [PATCH] Comment non-nim output in cimport --- nimterop/cimport.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nimterop/cimport.nim b/nimterop/cimport.nim index 90b10d8..1f0de30 100644 --- a/nimterop/cimport.nim +++ b/nimterop/cimport.nim @@ -138,7 +138,7 @@ proc getToast(fullpath: string, recurse: bool = false): string = cmd.add &" --pluginSourcePath={gStateCT.pluginSourcePath.quoteShell}" cmd.add &" {fullpath.quoteShell}" - echo cmd + echo "# " & cmd # see https://github.com/nimterop/nimterop/issues/69 (result, ret) = gorgeEx(cmd, cache=getCacheValue(fullpath)) doAssert ret == 0, getToastError(result) @@ -468,7 +468,7 @@ macro cImport*(filename: static string, recurse: static bool = false): untyped = let fullpath = findPath(filename) - echo "Importing " & fullpath + echo "# Importing " & fullpath let output = getToast(fullpath, recurse)