1913 |
06 Feb 06 |
nicklas |
#!/bin/sh |
1913 |
06 Feb 06 |
nicklas |
2 |
# |
1913 |
06 Feb 06 |
nicklas |
# $Id$ |
1913 |
06 Feb 06 |
nicklas |
4 |
# |
4889 |
06 Apr 09 |
nicklas |
# Copyright (C) 2006 Jari Häkkinen, Nicklas Nordborg |
1913 |
06 Feb 06 |
nicklas |
6 |
# |
2304 |
22 May 06 |
jari |
# This file is part of BASE - BioArray Software Environment. |
2304 |
22 May 06 |
jari |
# Available at http://base.thep.lu.se/ |
1913 |
06 Feb 06 |
nicklas |
9 |
# |
1913 |
06 Feb 06 |
nicklas |
# BASE is free software; you can redistribute it and/or |
1913 |
06 Feb 06 |
nicklas |
# modify it under the terms of the GNU General Public License |
4473 |
05 Sep 08 |
jari |
# as published by the Free Software Foundation; either version 3 |
1913 |
06 Feb 06 |
nicklas |
# of the License, or (at your option) any later version. |
1913 |
06 Feb 06 |
nicklas |
14 |
# |
1913 |
06 Feb 06 |
nicklas |
# BASE is distributed in the hope that it will be useful, |
1913 |
06 Feb 06 |
nicklas |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
1913 |
06 Feb 06 |
nicklas |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
1913 |
06 Feb 06 |
nicklas |
# GNU General Public License for more details. |
1913 |
06 Feb 06 |
nicklas |
19 |
# |
1913 |
06 Feb 06 |
nicklas |
# You should have received a copy of the GNU General Public License |
4508 |
11 Sep 08 |
jari |
# along with BASE. If not, see <http://www.gnu.org/licenses/>. |
1913 |
06 Feb 06 |
nicklas |
22 |
# |
1913 |
06 Feb 06 |
nicklas |
23 |
|
1913 |
06 Feb 06 |
nicklas |
# Import CLASSPATH($CP) |
2959 |
27 Nov 06 |
nicklas |
25 |
. ./set_classpath.sh |
1913 |
06 Feb 06 |
nicklas |
26 |
|
4396 |
18 Aug 08 |
nicklas |
# Add installation specific classes to CP |
4396 |
18 Aug 08 |
nicklas |
28 |
CP=$CP:../data |
4396 |
18 Aug 08 |
nicklas |
29 |
|
1913 |
06 Feb 06 |
nicklas |
# Execute install class |
1974 |
13 Feb 06 |
nicklas |
31 |
java -server -cp $CP net.sf.basedb.install.InitDB update $* |