From 8da706d6b48695f17d98fb10d2cf33715837071b Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Wed, 30 Apr 2025 15:31:13 -0400 Subject: [PATCH] pwd when launching a shell --- 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 72bb27c..fc05057 100755 --- a/lib/sc-launch.sh +++ b/lib/sc-launch.sh @@ -61,7 +61,7 @@ case "$1" in "shell") echo "Entering Wine prefix maintenance shell. Type 'exit' when done." export PATH="$wine_path:$PATH"; export PS1="Wine: " - cd "$WINEPREFIX"; /usr/bin/env bash --norc; exit 0 + cd "$WINEPREFIX"; pwd; /usr/bin/env bash --norc; exit 0 ;; "config") /usr/bin/env bash --norc -c "${wine_path}/winecfg"; exit 0