Skip to content

Commit

Permalink
ci: Fix remote URLs in reset script
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed May 24, 2024
1 parent 0f541e3 commit 502df23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/reset_history.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ cd tests/tmp || exit 1
rm -rf .git
git init .
if [ -n "${GH_TOKEN}" ]; then
git remote add origin https://pawamoy:${GH_TOKEN}@github.com:pawamoy/pawamoy-testing
git remote add origin https://pawamoy:${GH_TOKEN}@github.com:pawamoy/pawamoy-testing.git
else
git remote add origin git@github.com:pawamoy/pawamoy-testing
git remote add origin git@github.com:pawamoy/pawamoy-testing.git
fi
git add -A
git commit -m "feat: Initial commit"
Expand Down

0 comments on commit 502df23

Please sign in to comment.