[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/06: shell: Do not auto-detect manifest when '-p' is used.
From: |
guix-commits |
Subject: |
02/06: shell: Do not auto-detect manifest when '-p' is used. |
Date: |
Thu, 16 Jun 2022 17:58:41 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 4231031b69f141639ffd7056bfe7ddf60e7c534a
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Jun 16 16:53:36 2022 +0200
shell: Do not auto-detect manifest when '-p' is used.
Previous, "guix shell -p /path/to/profile" would have manifest/guix.scm
auto-detection turned on.
* guix/scripts/shell.scm (auto-detect-manifest)[options-contain-payload?]:
Return #t for 'profile.
---
guix/scripts/shell.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/guix/scripts/shell.scm b/guix/scripts/shell.scm
index 1a6df98829..84776af2f3 100644
--- a/guix/scripts/shell.scm
+++ b/guix/scripts/shell.scm
@@ -256,6 +256,7 @@ Return the modified OPTS."
((('package . _) . _) #t)
((('load . _) . _) #t)
((('manifest . _) . _) #t)
+ ((('profile . _) . _) #t)
((('expression . _) . _) #t)
((_ . rest) (options-contain-payload? rest))))
- branch master updated (ab82dd3f58 -> c8803d89fe), guix-commits, 2022/06/16
- 01/06: packages: Change the order of %SUPPORTED-SYSTEMS., guix-commits, 2022/06/16
- 06/06: ui: Improve pager selection logic when less is not installed., guix-commits, 2022/06/16
- 02/06: shell: Do not auto-detect manifest when '-p' is used.,
guix-commits <=
- 04/06: gnu: hcxtools: Use gexps., guix-commits, 2022/06/16
- 03/06: shell: Fix '--export-manifest' for cached profiles and when '-p' is used., guix-commits, 2022/06/16
- 05/06: gnu: hcxtools: Update to 6.2.7., guix-commits, 2022/06/16