Forgetting to put quotes around the pushd directory came back to bite me.

This commit is contained in:
Storm Dragon 2022-03-15 16:24:28 -04:00
parent e5cb7c2644
commit 87a0963b54

View File

@ -262,7 +262,7 @@ game_launcher() {
exit 0
;;
esac
pushd ${game%/*}
pushd "${game%/*}"
exec ${game%|}
}