Changeset 988 for vendor/current/script/commit_mark.sh
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/script/commit_mark.sh
r740 r988 2 2 # add a autobuild message to the HEAD commit 3 3 4 if grep -q '^Autobuild.User' "$1"; then 5 echo "Already marked as tested" 4 branch=$(git branch --contains HEAD | grep '^\* ' | sed -e 's/^\* //') 5 6 if grep -q "^Autobuild\-User($branch): " "$1"; then 7 echo "Already marked as tested for $branch" 6 8 exit 0 7 9 fi … … 14 16 cat <<EOF >> "$1" 15 17 16 Autobuild-User : $fullname <$mailaddr>17 Autobuild-Date : $(date) on $(hostname)18 Autobuild-User($branch): $fullname <$mailaddr> 19 Autobuild-Date($branch): $(date) on $(hostname) 18 20 EOF 19 21 exit 0
Note:
See TracChangeset
for help on using the changeset viewer.