mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 16:51:51 +03:00
9 lines
168 B
Bash
9 lines
168 B
Bash
|
#!/usr/bin/env sh
|
||
|
if [ $OS = "windows" ]; then
|
||
|
MY_PWD="$(cygpath -m $(pwd))\\\\"
|
||
|
else
|
||
|
MY_PWD=$(pwd)/
|
||
|
fi
|
||
|
|
||
|
sed -e "s|__PWD__|${MY_PWD}|g" expected.in > expected
|