Change move command to copy to prevent issues (#716)

Prevents issues when /runner and /runnertmp are in different devices

Fixes #686
This commit is contained in:
Rob Bos
2021-08-11 02:53:42 +02:00
committed by GitHub
parent fabead8c8e
commit fb66b28569

View File

@@ -50,7 +50,7 @@ if [ ! -d /runner ]; then
fi fi
sudo chown -R runner:docker /runner sudo chown -R runner:docker /runner
mv /runnertmp/* /runner/ cp -r /runnertmp/* /runner/
cd /runner cd /runner