Remove the use of realpath in tests (#315)
* do not use realpath * make the file to follow symlinks on linux
This commit is contained in:
parent
bf76da829c
commit
b13fd20bee
|
@ -6,4 +6,4 @@
|
|||
|
||||
set -o errexit -o nounset -o pipefail
|
||||
|
||||
file "$(realpath "$1")" | grep -q "$2"
|
||||
file --dereference "$1" | grep -q "$2"
|
||||
|
|
Loading…
Reference in New Issue