Skip to content

Commit

Permalink
[Fix] Fix missing double quote on exe value (Heroic-Games-Launcher#3131)
Browse files Browse the repository at this point in the history
  • Loading branch information
arielj authored Oct 13, 2023
1 parent 44c02ef commit ade9091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/shortcuts/nonesteamgame/nonesteamgame.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ async function addNonSteamGame(props: {
} else if (!isWindows && process.env.APPIMAGE) {
newEntry.Exe = `"${process.env.APPIMAGE}"`
} else if (isWindows && process.env.PORTABLE_EXECUTABLE_FILE) {
newEntry.Exe = `"${process.env.PORTABLE_EXECUTABLE_FILE}`
newEntry.Exe = `"${process.env.PORTABLE_EXECUTABLE_FILE}"`
newEntry.StartDir = `"${process.env.PORTABLE_EXECUTABLE_DIR}"`
}

Expand Down

0 comments on commit ade9091

Please sign in to comment.