Skip to content
Permalink
917670f8da
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (15 sloc) 545 Bytes
#!/bin/sh -e
# The purpose of this script is to fix the debian changelog in the git
# repository to publish a new release
#
# This is used in the jenkins job named "R debian provision changelog"
# Provision
rm -rf provision
git clone --branch debian darthsteven@git.drupal.org:project/provision.git
cd provision
# Merge in the new version
git merge $NEW_TAG
dch -v $NEW_DEBIAN_VERSION -D testing "new upstream release"
git commit -a -m "Updating Debian changelog for release $NEW_DEBIAN_VERSION"
# Now we'd do a push
git push origin debian