Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
fix: Bash mv error - mv replaced with cp
Browse files Browse the repository at this point in the history
  • Loading branch information
lholota committed Oct 8, 2023
1 parent 95174b2 commit 16aad9a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ echo "Creating root directory to $ROOT_DIR..."
mkdir -p $ROOT_DIR

echo "Moving runner root directory to $ROOT_DIR..."
find /var/lib/github-runner/_template -maxdepth 1 -mindepth 1 | xargs -I '{}' mv '{}' "$ROOT_DIR"
find /var/lib/github-runner/_template -maxdepth 1 -mindepth 1 | xargs -I '{}' cp -R '{}' "$ROOT_DIR"
cd $ROOT_DIR


echo "Connecting to GitHub org: $GH_OWNER"
echo "Runner name: $FULL_RUNNER_NAME"

Expand Down

0 comments on commit 16aad9a

Please sign in to comment.