Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Run Git over SSH
Test with another branch
  • Loading branch information
Javier Serrano Polo committed Feb 13, 2017
commit e1631f72ab4edd9ac05eedd6afccafcbcddd5927
7 changes: 5 additions & 2 deletions dev/git_maintenance_tasks
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/bin/sh
set -e

BRANCH=master
BRANCH=maintenance-test

TOPDIR="$(readlink -e "$(dirname $0)/..")"

# Force C locale
Expand All @@ -18,11 +21,11 @@ then
exit
fi
else
git clone -b master https://github.com/LMMS/lmms
git clone -b "$BRANCH" ssh://github.com/LMMS/lmms
cd lmms
fi

rm -f maintenance-tasks-done
run-parts --exit-on-error "$TOPDIR/tasks/lmms"
git push origin master
git push origin "$BRANCH"
touch maintenance-tasks-done