mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 06:37:03 +03:00
24 lines
331 B
Bash
24 lines
331 B
Bash
# -*- sh -*-
|
|
|
|
subdirs='
|
|
names-th
|
|
sql-words
|
|
persistable-record
|
|
relational-query
|
|
relational-schemas
|
|
HDBC-session
|
|
relational-query-HDBC
|
|
text-postgresql
|
|
persistable-types-HDBC-pg
|
|
'
|
|
|
|
check_dir() {
|
|
name="$1"
|
|
|
|
[ x$name != x ] || exit 1
|
|
if [ ! -d $name ]; then
|
|
echo "Directory not found: $name"
|
|
exit 1
|
|
fi
|
|
}
|