From d2df224da800bf050cba0fd02e5dd8e052e17ecb Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 11 Dec 2019 16:46:24 -0800 Subject: [PATCH] Use busybox short option to su. --- scripts/run-full-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-full-tests b/scripts/run-full-tests index 04c77c9d1..6afea0002 100755 --- a/scripts/run-full-tests +++ b/scripts/run-full-tests @@ -16,4 +16,4 @@ tox apk add --no-cache borgbackup postgresql-client mariadb-client working_directory="$PWD" adduser --disabled-password tests -su - tests --command "cd $working_directory && tox --workdir /tmp -e end-to-end" +su - tests -c "cd $working_directory && tox --workdir /tmp -e end-to-end"