Project

General

Profile

1 8940 aaronmk
#!/bin/bash -e
2
# syncs VegCore.ERD.mwb's zip file contents
3
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/util.run
4 9854 aaronmk
.rel ../../lib/sh/local.sh
5 8940 aaronmk
6
if self_not_included; then
7
8 9074 aaronmk
install()
9 8940 aaronmk
{
10 12968 aaronmk
	begin_target
11 8940 aaronmk
	root_make schemas/temp/reinstall
12
	psql_script_vegbien <"$top_file"
13
}
14
15 9074 aaronmk
all()
16 8940 aaronmk
{
17 12968 aaronmk
	begin_target
18
	with_rm install
19 8940 aaronmk
}
20
21
fi