mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-17 02:22:09 +00:00
Remove output prefix
It's too difficult to read, especially when getting user input via stdin
This commit is contained in:
parent
c5afd69f50
commit
0ef7b33a55
@ -157,7 +157,9 @@ fi
|
|||||||
if [ -d "${LOCAL_MODS_DIR:-local}" ]; then
|
if [ -d "${LOCAL_MODS_DIR:-local}" ]; then
|
||||||
for mod in $(ls "${LOCAL_MODS_DIR:-local}" | grep -v '~$'); do
|
for mod in $(ls "${LOCAL_MODS_DIR:-local}" | grep -v '~$'); do
|
||||||
if [ -x ${LOCAL_MODS_DIR:-local}/$mod ]; then
|
if [ -x ${LOCAL_MODS_DIR:-local}/$mod ]; then
|
||||||
${LOCAL_MODS_DIR:-local}/$mod |& sed -e "s/^/mod(${mod%%.*}): /"
|
echo ""
|
||||||
|
echo "Running mod: ${LOCAL_MODS_DIR:-local}/$mod"
|
||||||
|
${LOCAL_MODS_DIR:-local}/$mod
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user