Skip to content
Snippets Groups Projects
Commit 0e8e7e5a authored by Sertonix's avatar Sertonix Committed by Timo Teräs
Browse files

test: fix busybox realpath compat

busybox realpath doesn't have the -e option. The option
didn't seem to be needed anyways so remove it. 
parent 508b312d
No related branches found
No related tags found
1 merge request!272test: fix busybox realpath compat
Pipeline #292570 passed
......@@ -18,7 +18,7 @@ run_test() {
local test="$1"
local testfile testdir
testfile="$(realpath -e "$test")"
testfile="$(realpath "$test")"
testdir="$(dirname "$testfile")"
setup_apkroot
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment