Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 590fe6c8 authored by Robert Nelson's avatar Robert Nelson
Browse files

scripts: sync with master


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent dd41ca15
No related merge requests found
#!/bin/sh -e
DIR=$PWD
if [ -e ${DIR}/version.sh ]; then
unset BRANCH
unset KERNEL_TAG
. ${DIR}/version.sh
if [ ! "${BRANCH}" ] ; then
BRANCH="master"
fi
if [ ! "${KERNEL_TAG}" ] ; then
echo 'KERNEL_TAG undefined'
exit
fi
git commit -a -m "kernel bump: v${KERNEL_TAG}" -s
git push origin ${BRANCH}
fi
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment