Skip to content

Commit

Permalink
Merge pull request #2267 from seefood/ira/lint-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
seefood authored Nov 7, 2024
2 parents 52a1459 + a79a0e5 commit d0f1ee2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions plugins/available/jgitflow.plugin.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# shellcheck shell=bash
# shellcheck disable=SC2086
cite about-plugin
about-plugin 'Maven jgitflow build helpers'

Expand All @@ -18,21 +19,21 @@ function hotfix-start {
about 'helper function for starting a new hotfix'
group 'jgitflow'

pre-jgitflow && mvn jgitflow:hotfix-start ${JGITFLOW_MVN_ARGUMENTS}
pre-jgitflow && mvn jgitflow:hotfix-start ${JGITFLOW_MVN_ARGUMENTS}
}

function hotfix-finish {
about 'helper function for finishing a hotfix'
group 'jgitflow'

pre-jgitflow && mvn jgitflow:hotfix-finish -Darguments="${JGITFLOW_MVN_ARGUMENTS}" && git push && git push origin master && git push --tags && mvn clean
pre-jgitflow && mvn jgitflow:hotfix-finish -Darguments="${JGITFLOW_MVN_ARGUMENTS}" && git push && git push origin master && git push --tags && mvn clean
}

function feature-start {
about 'helper function for starting a new feature'
group 'jgitflow'

pre-jgitflow && mvn jgitflow:feature-start ${JGITFLOW_MVN_ARGUMENTS}
pre-jgitflow && mvn jgitflow:feature-start ${JGITFLOW_MVN_ARGUMENTS}
}

function feature-finish {
Expand Down

0 comments on commit d0f1ee2

Please sign in to comment.