about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorAtemu <atemu.main@gmail.com>2023-08-10 09:59:29 +0200
committerGitHub <noreply@github.com>2023-08-10 09:59:29 +0200
commitce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e (patch)
tree9a47f76d34c5ec29d05a5c92754ba00128f20e8f /pkgs/games
parent5f9bf6e19271a7af0836c527c2eec4025e51ec60 (diff)
parentde88bd94d67b1bbc3ff6464912f1405081c54b6e (diff)
Merge pull request #248162 from edanaher/anki-pass-command-line-arguments
anki-bin: pass command-line arguments through anki-wrapper
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/anki/bin.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/anki/bin.nix b/pkgs/games/anki/bin.nix
index 2e97bb91d65f9..9a66de369266b 100644
--- a/pkgs/games/anki/bin.nix
+++ b/pkgs/games/anki/bin.nix
@@ -58,7 +58,7 @@ let
     targetPkgs = pkgs: (with pkgs; [ xorg.libxkbfile xcb-util-cursor-HEAD krb5 ]);
 
     runScript = writeShellScript "anki-wrapper.sh" ''
-      exec ${unpacked}/bin/anki ${ lib.strings.escapeShellArgs commandLineArgs }
+      exec ${unpacked}/bin/anki ${ lib.strings.escapeShellArgs commandLineArgs } "$@"
     '';
 
     extraInstallCommands = ''