fix: use copy instead of move (#1066)
* fix: use copy instead of move Co-authored-by: Colin Spargo <cspargo@users.noreply.github.com>
This commit is contained in:
parent
715e6a40f1
commit
9d5a562407
|
|
@ -79,7 +79,8 @@ fi
|
||||||
# if this is not a testing environment
|
# if this is not a testing environment
|
||||||
if [ -z "${UNITTEST:-}" ]; then
|
if [ -z "${UNITTEST:-}" ]; then
|
||||||
sudo chown -R runner:docker ${RUNNER_HOME}
|
sudo chown -R runner:docker ${RUNNER_HOME}
|
||||||
mv /runnertmp/* ${RUNNER_HOME}/
|
# use cp over mv to avoid issues when /runnertmp and {RUNNER_HOME} are on different devices
|
||||||
|
cp -r /runnertmp/* ${RUNNER_HOME}/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ${RUNNER_HOME}
|
cd ${RUNNER_HOME}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue