From 87a0963b54607f5a49831585f6eca1633948367d Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 15 Mar 2022 16:24:28 -0400 Subject: [PATCH] Forgetting to put quotes around the pushd directory came back to bite me. --- linux-game-manager.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index eebbf3c..f5daff7 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -262,7 +262,7 @@ game_launcher() { exit 0 ;; esac - pushd ${game%/*} + pushd "${game%/*}" exec ${game%|} }