Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit 82f103f

Browse files
sjoelundOpenModelica-Hudson
authored andcommitted
Don't print error-message about missing impact
This fixes ticket:4573. Belonging to [master]: - #2139
1 parent 9c4635f commit 82f103f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Compiler/Script/CevalScriptBackend.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2132,7 +2132,7 @@ algorithm
21322132
files = List.flatten(List.map(mps, System.moFiles));
21332133
dirs = List.flatten(List.map(mps, getLibrarySubdirectories));
21342134
files = List.map(List.map1(listAppend(files,dirs), System.strtok, ". "), listHead);
2135-
(str, status) = System.popen("impact search '' | perl -pe 's/\\e\\[?.*?[\\@-~]//g' | grep '[^ :]*:' | cut -d: -f1 2>&1");
2135+
(str, status) = System.popen("impact search '' 2>&1 | perl -pe 's/\\e\\[?.*?[\\@-~]//g' | grep '[^ :]*:' | cut -d: -f1 2>&1");
21362136
if 0==status then
21372137
files = listAppend(System.strtok(str,"\n"), files);
21382138
end if;

0 commit comments

Comments
 (0)