Skip to content

Commit

Permalink
#30 chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed Jul 21, 2024
1 parent a2dfc7b commit b5e505a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup/git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,12 @@ blog_private_modules_sync() {
echo ''
}

blog_all_packages_sync() {
for package in "${BLOG_PACKAGES[@]}"; do
blog_package_sync "$package" "$1"
done
}

blog_api_package_sync() {
echo '📥 Syncing api package...'
blog_package_sync "${BLOG_PACKAGES[0]}" "$1"
Expand All @@ -173,9 +179,3 @@ blog_core_package_sync() {
echo '📥 Syncing core package...'
blog_package_sync "${BLOG_PACKAGES[1]}" "$1"
}

blog_all_packages_sync() {
for package in "${BLOG_PACKAGES[@]}"; do
blog_package_sync "$package" "$1"
done
}

0 comments on commit b5e505a

Please sign in to comment.