From 211fdc47b7b7e5a8e9c739f21c669f4b4dea452e Mon Sep 17 00:00:00 2001 From: GloriousEggroll Date: Fri, 2 Feb 2024 16:10:53 -0700 Subject: [PATCH] shaddaaap already (get rid of error spam from trying to create symlinks that may already exist) --- gamelauncher.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gamelauncher.sh b/gamelauncher.sh index b31ab03..a2643e1 100755 --- a/gamelauncher.sh +++ b/gamelauncher.sh @@ -15,14 +15,14 @@ if [[ $WINEPREFIX ]]; then export PROTON_DLL_COPY="*" fi if [[ ! -d "$WINEPREFIX"/pfx ]]; then - ln -s "$WINEPREFIX" "$WINEPREFIX"/pfx + ln -s "$WINEPREFIX" "$WINEPREFIX"/pfx &> /dev/null fi if [[ ! -f "$WINEPREFIX"/tracked_files ]]; then touch "$WINEPREFIX"/tracked_files fi if [[ ! -f "$WINEPREFIX/dosdevices/" ]]; then mkdir -p "$WINEPREFIX"/dosdevices - ln -s "../drive_c" "$WINEPREFIX/dosdevices/c:" + ln -s "../drive_c" "$WINEPREFIX/dosdevices/c:" &> /dev/null fi fi export PROTONPATH="$PROTONPATH"