docker-tmserver/xaseco/bin/config.sh

11 lines
229 B
Bash
Raw Permalink Normal View History

2022-06-26 17:46:55 +02:00
#!/command/with-contenv bash
if ls config/* &>/dev/null; then
echo "INFO | Linking custom configuration files..."
for i in config/*
do
ln -sf $i .
done
echo "INFO | Custom configuration done."
fi