File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
- PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin
1
+ PATH=/opt/local/bin:/opt/local/sbin:/ usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin
2
2
3
- 10 00 * * * $HOME/scripts/R-build-prerelease
4
- 05 00 25 3 * $HOME/scripts/R-create-branch 2.11
5
- 05 00 8 4 * $HOME/scripts/R-set-version '2.11.0 beta'
6
- 05 00 15 4 * $HOME/scripts/R-set-version '2.11.0 RC'
3
+ 05 00 * * * $HOME/scripts/R-build-prerelease
4
+ 02 00 12 06 * $HOME/scripts/R-set-version '2.15.1 beta' 'Roasted Marshmallows'
5
+ 02 00 15 06 * $HOME/scripts/R-set-version '2.15.1 RC'
6
+ 00 09 22 06 * $HOME/scripts/R-build-dist 2.15.1
7
+ #02 00 02 03 * $HOME/scripts/R-create-branch 2.15
8
+ #02 00 16 03 * $HOME/scripts/R-set-version '2.15.0 beta'
9
+ #02 00 23 03 * $HOME/scripts/R-set-version '2.15.0 RC'
10
+ #00 09 30 03 * $HOME/scripts/R-build-dist 2.15.0
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -x
2
- # This script sets the VERSION file and commits it
2
+ # This script sets the VERSION file andi, optionally, the VERSION-NICK
3
+ # and then commits the changes
3
4
# It is run from cron at Feature Freeze and Code Freeze
4
5
LOCALDIR=$HOME
5
6
# -- no changes necessary below this line
6
7
cd $LOCALDIR /r-release-branch
7
8
umask 022
8
9
cd R
9
10
svn up || exit 1
10
- echo $* > VERSION
11
+ echo $1 > VERSION
12
+ if [ x" $2 " != x ]; then echo $2 > VERSION-NICK ; fi
11
13
aclocal -I m4 --force
12
14
autoconf --force
13
15
svn commit -m " go to $* "
You can’t perform that action at this time.
0 commit comments