Fix special characters interferng in scripts

This commit is contained in:
1computer1 2019-06-01 01:04:15 -04:00
parent 20a2199bbf
commit 2f38bc640c
25 changed files with 29 additions and 29 deletions

View file

@ -3,7 +3,7 @@ if [ "$EVAL_EXPR" = "true" ]; then
else
mkdir "$CODEDIR" && cd "$CODEDIR"
echo "$1" > program.hs
printf %s "$1" > program.hs
ghc -e main program.hs
cd .. && rm -rf "$CODEDIR"