Browse Source

add infrastructure for checking out branches

OPENBSD_5_8
Brent Cook 8 years ago
parent
commit
c3f5624f31
2 changed files with 3 additions and 1 deletions
  1. +1
    -0
      OPENBSD_BRANCH
  2. +2
    -1
      update.sh

+ 1
- 0
OPENBSD_BRANCH View File

@ -0,0 +1 @@
master

+ 2
- 1
update.sh View File

@ -1,6 +1,7 @@
#!/bin/sh
set -e
openbsd_branch=`cat OPENBSD_BRANCH`
openntpd_version=`cat VERSION`
# pull in latest upstream code
@ -13,7 +14,7 @@ if [ ! -d openbsd ]; then
fi
fi
(cd openbsd
git checkout master
git checkout $openbsd_branch
git pull --rebase)
# setup source paths


Loading…
Cancel
Save