root/lib/runscripts/datasrc_dir.run @ 11199
1 |
#!/bin/bash -e
|
---|---|
2 |
. "$(dirname "${BASH_SOURCE[0]}")"/in_datasrc_dir.run |
3 |
.rel import.run |
4 |
|
5 |
if self_not_included; then |
6 |
|
7 |
table_subdirs=($(cat "$top_dir"/import_order.txt)) |
8 |
subdirs=("${table_subdirs[@]}") |
9 |
|
10 |
postprocess()
|
11 |
{
|
12 |
echo_func |
13 |
local subdirs=("${table_subdirs[@]}") |
14 |
fwd "$FUNCNAME" "$@" |
15 |
}
|
16 |
|
17 |
import()
|
18 |
{
|
19 |
echo_func; set_make_vars
|
20 |
if remaking; then datasrc_make reinstall; fi |
21 |
fwd "$FUNCNAME" "$@" |
22 |
}
|
23 |
|
24 |
fi
|