mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
- restore the original mingw/msys link, even when the build script abort (due to a die command) - only restore the mingw/msys link if it was saved before - weekly builds should be on Monday, not Tuesday - upload tag rebuilds to a directory named 'releases' instead of 'tags' BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20456 57a11ea4-9604-0410-9ed3-97b8803252fd
24 lines
738 B
Bash
24 lines
738 B
Bash
#!/bin/sh
|
|
#
|
|
# Note: for this script to work, you need to make sure bash can
|
|
# find svn on your system. If it's not in the default
|
|
# Windows path, you will have to add it yourself, for
|
|
# example like this:
|
|
# - create a file /etc/profile.d/svn.sh
|
|
# - add this line: export PATH=/c/soft/svn/bin:$PATH
|
|
# (Use the real path to your svn installation, obviously)
|
|
|
|
set -e
|
|
|
|
# Only run this script on Monday night (first day of the week)
|
|
if [ `date +%u` != 1 ] ; then exit ; fi
|
|
|
|
function qpushd() { pushd "$@" >/dev/null; }
|
|
function qpopd() { popd >/dev/null; }
|
|
function unix_path() { echo "$*" | sed 's,^\([A-Za-z]\):,/\1,;s,\\,/,g'; }
|
|
|
|
qpushd "$(dirname $(unix_path "$0"))"
|
|
svn update
|
|
./build_package.sh
|
|
qpopd
|