From fb66b285693782c56e3d0017bcfea4730edbf5f3 Mon Sep 17 00:00:00 2001 From: Rob Bos Date: Wed, 11 Aug 2021 02:53:42 +0200 Subject: [PATCH] Change `move` command to `copy` to prevent issues (#716) Prevents issues when /runner and /runnertmp are in different devices Fixes #686 --- runner/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/entrypoint.sh b/runner/entrypoint.sh index 0653948d..d220b517 100755 --- a/runner/entrypoint.sh +++ b/runner/entrypoint.sh @@ -50,7 +50,7 @@ if [ ! -d /runner ]; then fi sudo chown -R runner:docker /runner -mv /runnertmp/* /runner/ +cp -r /runnertmp/* /runner/ cd /runner