Include fix/ branches in freshening

This commit is contained in:
Ben Allfree 2024-01-16 02:20:50 -08:00
parent 47df986dae
commit 0e1afe5a4f

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Get all branches that start with 'feat/' and store them in an array
feat_branches=($(git branch | grep '^ feat/' | sed 's/ //'))
feat_branches=($(git branch --list 'feat/*' 'fix/*' | sed 's/ //'))
# Loop through each 'feat/' branch
for branch in "${feat_branches[@]}"; do