tests: pack-relocatable: Ensure commands can run in the current namespace.
* tests/guix-pack-relocatable (run_without_store): Use subshell to run commands in the current namespace. This avoids shell syntax and parsing errors.
This commit is contained in:
parent
133414ad89
commit
a67b82475d
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ run_without_store ()
|
||||||
# Run the relocatable program in the current namespaces. This is a
|
# Run the relocatable program in the current namespaces. This is a
|
||||||
# weak test because we're going to access store items from the host
|
# weak test because we're going to access store items from the host
|
||||||
# store.
|
# store.
|
||||||
$*
|
sh -c "$*"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue