mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 02:23:44 +03:00
9 lines
168 B
Bash
Executable File
9 lines
168 B
Bash
Executable File
#!/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
|