diff options
-rw-r--r-- | gnu/packages/games.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 5687270e60..a04814d461 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -4069,7 +4069,7 @@ fight against their plot and save his fellow rabbits from slavery.") (let* ((dir (string-append "binaries/data/mods/" name)) (file (string-append dir "/" name ".zip")) (unzip #$(file-append unzip "/bin/unzip"))) - (system* unzip "-d" dir file) + (invoke unzip "-d" dir file) (delete-file file))) '("mod" "public")) #t)))) |