We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3429d8 commit fadd409Copy full SHA for fadd409
1 file changed
run.sh
@@ -118,7 +118,7 @@ then
118
fi
119
120
dockerimage='solidproject/conformance-test-harness'
121
-dockerargs=('-i' '--rm')
+dockerargs=('-i' '--rm' '--user' "$(id -u):$(id -g)")
122
cwd=$(pwd)
123
harnessargs=('--output=/reports')
124
@@ -174,8 +174,9 @@ if ! [[ "$*" == *"--target="* ]]; then
174
harnessargs+=("--target=https://github.com/solid/conformance-test-harness/$subject")
175
176
177
-# ensure report directory exists
+# ensure report and target directories exist
178
mkdir -p reports/$subject
179
+mkdir -p target
180
181
# optionally start CSS
182
if [ $subject == "css" ]
0 commit comments