From 0ef7b33a551237fe554caabdfc60571a94298812 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 14 Jun 2022 05:39:32 -0400 Subject: [PATCH] Remove output prefix It's too difficult to read, especially when getting user input via stdin --- setup/start.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/start.sh b/setup/start.sh index ec1abbaa..4dcb9be8 100755 --- a/setup/start.sh +++ b/setup/start.sh @@ -157,7 +157,9 @@ fi if [ -d "${LOCAL_MODS_DIR:-local}" ]; then for mod in $(ls "${LOCAL_MODS_DIR:-local}" | grep -v '~$'); do 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 done fi