1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 01:07:11 -07:00

echo compiler invocation to stdout instead

This commit is contained in:
Connor Olding 2017-04-27 23:17:18 +00:00
parent e582218354
commit 94b32e0a26

View File

@ -123,7 +123,7 @@ compile() {
fi
done
echo $compiler $std ${final_flags[@]} $file ${libraries[@]} -o $out >&2
echo $compiler $std ${final_flags[@]} $file ${libraries[@]} -o $out
$compiler $std ${final_flags[@]} $file ${libraries[@]} -o $out >&2
}