Skip to content

Commit

Permalink
#77 polish fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Sep 26, 2023
1 parent 487818f commit 51d3070
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions steps/polish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ set -e
set -o pipefail

dir=${TARGET}/github
if [ ! -e "${dir}" ]; then
echo "Nothing to polish, the directory is absent: ${dir}"
exit
fi

repos=$(find "${dir}" -maxdepth 2 -mindepth 2 -type d -exec realpath --relative-to="${dir}" {} \;)
echo "${repos}" | while read -r repo; do
Expand Down

0 comments on commit 51d3070

Please sign in to comment.