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:
parent
fabead8c8e
commit
fb66b28569
|
|
@ -50,7 +50,7 @@ if [ ! -d /runner ]; then
|
|||
fi
|
||||
|
||||
sudo chown -R runner:docker /runner
|
||||
mv /runnertmp/* /runner/
|
||||
cp -r /runnertmp/* /runner/
|
||||
|
||||
cd /runner
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue