From e7ba317557ccb49be81d5f327abd031534283d06 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Tue, 29 Oct 2024 22:28:44 -0400 Subject: [PATCH] Add subshell message --- lib/sc-launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sc-launch.sh b/lib/sc-launch.sh index 85248cf..938a7c1 100755 --- a/lib/sc-launch.sh +++ b/lib/sc-launch.sh @@ -55,7 +55,7 @@ export wine_path="$(command -v wine | xargs dirname)" # Usage: ./sc-launch.sh shell if [ "$1" = "shell" ]; then export PATH="$wine_path:$PATH" - /usr/bin/env bash + echo "Entering Wine prefix maintenance shell. Type 'exit' when done."; cd "$WINEPREFIX"; /usr/bin/env bash --norc exit 0 fi