Skip to content
Snippets Groups Projects
Commit 9c1fc5bb authored by Gerhard Gonter's avatar Gerhard Gonter :speech_balloon:
Browse files

wrong way to call system()

parent 92e3fbae
No related branches found
No related tags found
No related merge requests found
......@@ -139,8 +139,8 @@ else
# &usage ('no project specified') unless (defined ($project));
unless (defined ($project))
{
print "no project specified; check these:\n";
system ('ls -ls "$TAPROJ"');
print "no project specified; check these (TAPROJ=[$TAPROJ]):\n";
system ('ls', '-ls', $TAPROJ);
exit (2);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment