diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-02-05 18:47:31 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-02-14 17:49:26 +0100 |
commit | 11415d35064cdba5cec1139aede18099cfa14547 (patch) | |
tree | 0841670ae1bf51870377eb996c702305ba813c5d /etc | |
parent | a74e23188f78c7e5b25c625e52ab194a2b33d952 (diff) | |
download | patches-11415d35064cdba5cec1139aede18099cfa14547.tar patches-11415d35064cdba5cec1139aede18099cfa14547.tar.gz |
guix build: Add '--manifest' option.
* guix/scripts/build.scm (show-help): Document --manifest argument.
(options->things-to-build): When given a manifest, evaluate all the entries.
* tests/guix-build.sh: Add test for --manifest.
* doc/guix.texi (Additional Build Options): Mention --manifest.
* etc/completion/bash/guix: Complete file name if 'guix build' argument is
-m.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/completion/bash/guix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/completion/bash/guix b/etc/completion/bash/guix index edfb627e87..0333bfc8a2 100644 --- a/etc/completion/bash/guix +++ b/etc/completion/bash/guix @@ -178,7 +178,7 @@ _guix_complete () _guix_complete_installed_package "$word_at_point" elif _guix_is_command "build" then - if _guix_is_dash_L + if _guix_is_dash_L || _guix_is_dash_m then _guix_complete_file else |