Skip to content
Snippets Groups Projects
Commit bb9517f7 authored by Yves Noirjean's avatar Yves Noirjean Committed by yvesn
Browse files

not checking out master - branch is created from current branch; adding only modified files to git

parent 63dd160d
No related branches found
No related tags found
No related merge requests found
......@@ -20,8 +20,6 @@ fi
cd "$(dirname "$0")/../../../.."
# create branch in git from master
git checkout master
git pull
git checkout -b $1
git push -u origin $1
......@@ -56,7 +54,9 @@ for project in $GRADLE_PROJECTS; do
for file in build.gradle javaproject.gradle gwtdev.gradle query-api.gradle proteomics-api.gradle screening-api.gradle admin-console.gradle clients.gradle; do
if [ -s $file ]; then
sed -f sed_commands $file > $file.tmp;
mv $file.tmp $file;
mv $file.tmp $file;
# add to git
git add $file
fi;
done
......@@ -65,6 +65,5 @@ for project in $GRADLE_PROJECTS; do
done
# commit dependency versions
git add --all
git commit -m "fixed dependencies of $1";
git push
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment