16 lines
237 B
Bash
16 lines
237 B
Bash
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
|
dists=(
|
|
d11
|
|
d10
|
|
#d9
|
|
)
|
|
setdists "${dists[@]}"
|
|
|
|
if dist d11; then
|
|
include d11
|
|
elif dist d10; then
|
|
include d10
|
|
elif dist d9; then
|
|
include d9
|
|
fi
|