Skip to content
Snippets Groups Projects
Commit 1ad5b11a authored by Brad King's avatar Brad King
Browse files

BUG: Added carrot (^) to characters that need quoting. The solaris shell needs it.

parent 363cbd83
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c)
return ((c == '\'') || (c == '`') || (c == ';') || (c == '#') ||
(c == '&') || (c == '$') || (c == '(') || (c == ')') ||
(c == '~') || (c == '<') || (c == '>') || (c == '|') ||
(c == '*') || (c == '\\'));
(c == '*') || (c == '^') || (c == '\\'));
}
/*--------------------------------------------------------------------------*/
......
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