Skip to content
Snippets Groups Projects
Commit e2aa75c2 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Silence an error message from ls.

Rev: src/precompile.sh.in:1.21
parent 42c0e346
Branches
Tags
No related merge requests found
......@@ -11,7 +11,7 @@ INPUT="`eval echo \"\\$$#\"`"
TMPOUTPUT="${INPUT}.compiled"
if [ -f "$TMPOUTPUT" ]; then
if [ "`ls -1t $TMPOUTPUT $INPUT $SCRIPT | head -1`" = "`ls -1t $TMPOUTPUT`" ]; then
if [ "`ls -1t $TMPOUTPUT $INPUT $SCRIPT 2>/dev/null | head -1`" = "`ls -1t $TMPOUTPUT`" ]; then
cat "$TMPOUTPUT" >&5
exit 0
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment