We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0682def commit 0bfc616Copy full SHA for 0bfc616
scripts/bower/publish.sh
@@ -63,6 +63,21 @@ function prepare {
63
cp $BUILD_DIR/angular-csp.css $TMP_DIR/bower-angular
64
65
66
+ #
67
+ # Run local precommit script if there is one
68
69
+ for repo in "${REPOS[@]}"
70
+ do
71
+ if [ -f $TMP_DIR/bower-$repo/precommit.sh ]
72
+ then
73
+ echo "-- Running precommit.sh script for bower-$repo"
74
+ cd $TMP_DIR/bower-$repo
75
+ $TMP_DIR/bower-$repo/precommit.sh
76
+ cd $SCRIPT_DIR
77
+ fi
78
+ done
79
+
80
81
#
82
# update bower.json
83
# tag each repo
0 commit comments