Skip to content

Commit

Permalink
#83 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Sep 27, 2023
1 parent 170419a commit ffc89e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion steps/clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ total=$(wc -l < "${repos}" | xargs)

declare -i repo=0
sh="$(dirname "$0")/clone-repo.sh"
while IFS=',' read -r r tag; do
while IFS=',' read -r r tag tail; do
repo=$((repo+1))
if [ -z "${tag}" ]; then tag='.'; fi
if [ -e "${TARGET}/github/${r}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion tests/steps/test-clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ set -o pipefail

temp=$1

echo -e "name\nyegor256/jaxec" > "${TARGET}/repositories.csv"
echo -e "name\nyegor256/jaxec,master,4,5,5,6" > "${TARGET}/repositories.csv"
rm -rf "${TARGET}/github"
"${LOCAL}/steps/clone.sh" >/dev/null
test -e "${TARGET}/github/yegor256/jaxec/pom.xml"
Expand Down

0 comments on commit ffc89e6

Please sign in to comment.