Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/winapps/setup.patch
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ index 3a871c8..71a8fa0 100755
# Populate variables.
WIN_BASH="\
#!/usr/bin/env bash
-${BIN_PATH}/winapps windows"
+@out@/bin/winapps windows"
-${BIN_PATH}/winapps windows \"\$@\""
+@out@/bin/winapps windows \"\$@\""
WIN_DESKTOP="\
[Desktop Entry]
Name=Windows
Expand All @@ -86,8 +86,8 @@ index 3a871c8..71a8fa0 100755
# Determine the content of the bash script for the application.
APP_BASH="\
#!/usr/bin/env bash
-${BIN_PATH}/winapps ${1}"
+@out@/bin/winapps ${1}"
-${BIN_PATH}/winapps ${1} \"\$@\""
+@out@/bin/winapps ${1} \"\$@\""

# Determine the content of the '.desktop' file for the application.
APP_DESKTOP_FILE="\
Expand Down
4 changes: 2 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ function waConfigureWindows() {
# Populate variables.
WIN_BASH="\
#!/usr/bin/env bash
${BIN_PATH}/winapps windows"
${BIN_PATH}/winapps windows \"\$@\""
WIN_DESKTOP="\
[Desktop Entry]
Name=Windows
Expand Down Expand Up @@ -1382,7 +1382,7 @@ function waConfigureApp() {
# Determine the content of the bash script for the application.
APP_BASH="\
#!/usr/bin/env bash
${BIN_PATH}/winapps ${1}"
${BIN_PATH}/winapps ${1} \"\$@\""

# Determine the content of the '.desktop' file for the application.
APP_DESKTOP_FILE="\
Expand Down
Loading