diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-27 20:26:20 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-27 21:35:37 -0400 |
commit | 6715e1c24f19a5e1eb39c9baae9eebf4238533a7 (patch) | |
tree | 4e8911478b61557e7a233d9d4ead8ca4f5beae55 /gnu/packages/games.scm | |
parent | 22fc1b90f03749c3af0da1c9856abc6251526a7f (diff) | |
download | guix-6715e1c24f19a5e1eb39c9baae9eebf4238533a7.tar guix-6715e1c24f19a5e1eb39c9baae9eebf4238533a7.tar.gz |
gnu: 0ad-data: Use invoke.
* gnu/packages/games.scm (0ad-data)[source]: Use invoke in the snippet.
Diffstat (limited to 'gnu/packages/games.scm')
-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)))) |