mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-15 22:32:19 +03:00
9 lines
172 B
Bash
Executable File
9 lines
172 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
|