branch: elpa/nix-mode
commit da7e638f2fa8a04a399b37cfa481e59cb3c18ff3
Author: Daniel Nagy <[email protected]>
Commit: Daniel Nagy <[email protected]>

    Spell out command argument
    
    Writing out the full name command arguments can help newcomers, who dont
    know the shorthand of the flag understand the intent better.
---
 nix-store.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix-store.el b/nix-store.el
index e1cf96dfb5..b5bf922334 100644
--- a/nix-store.el
+++ b/nix-store.el
@@ -18,7 +18,7 @@
 PATH the path within /nix/store to realise"
   (make-process
    :buffer nil
-   :command (list nix-store-executable "-r" path)
+   :command (list nix-store-executable "--realise" path)
    :noquery t
    :name (format "*nix-store*<%s>" path)))
 

Reply via email to