mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-17 16:21:46 +03:00
9 lines
172 B
Bash
9 lines
172 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
|