Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
at-wat committed Jul 18, 2024
1 parent da981a3 commit 5387765
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions update-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ dry_run='false'
generate_opts=
while getopts do: opt; do
case ${opt} in
"d" ) dry_run='true' ; echo '[dry-run]';;
"o" ) generate_opts="${OPTARG}" ; echo "[generate-opts ${generate_opts}]";;
"d" )
dry_run='true'
echo '[dry-run]'
;;
"o" )
generate_opts="${generate_opts} ${OPTARG}"
echo "[generate-opts ${generate_opts}]"
;;
esac
done

Expand Down

0 comments on commit 5387765

Please sign in to comment.