mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
c8e393ffe2
commit
4231031b69
1 changed files with 1 additions and 0 deletions
|
@ -256,6 +256,7 @@ (define (options-contain-payload? opts)
|
|||
((('package . _) . _) #t)
|
||||
((('load . _) . _) #t)
|
||||
((('manifest . _) . _) #t)
|
||||
((('profile . _) . _) #t)
|
||||
((('expression . _) . _) #t)
|
||||
((_ . rest) (options-contain-payload? rest))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue