Skip to content

Commit

Permalink
Fix qz:steal on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Aug 12, 2021
1 parent 3715f22 commit 9653b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qz/installer/LinuxInstaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void addLauncher(String location, boolean isStartup) {
fieldMap.put("%DESTINATION%", destination);
fieldMap.put("%LINUX_ICON%", String.format("%s.svg", PROPS_FILE));
fieldMap.put("%COMMAND%", String.format("%s/%s", destination, PROPS_FILE));
fieldMap.put("%PARAM%", isStartup ? "--honorautostart" : "");
fieldMap.put("%PARAM%", isStartup ? "--honorautostart" : "%u");

File launcher = new File(location);
try {
Expand Down

0 comments on commit 9653b16

Please sign in to comment.