time-machine: Warn when no command is given.
* guix/scripts/time-machine.scm (guix-time-machine): Emit a warning when COMMAND-LINE is false. Change-Id: I26e6b608915ecaf6d9372f9b03dc5ebd1b4c68f9
parent
ab13e2be69
commit
331d858e21
|
@ -179,7 +179,7 @@ to %OLDEST-POSSIBLE-COMMIT is not that of an ancestor."
|
|||
(ref (assoc-ref opts 'ref))
|
||||
(substitutes? (assoc-ref opts 'substitutes?))
|
||||
(authenticate? (assoc-ref opts 'authenticate-channels?)))
|
||||
(when command-line
|
||||
(if command-line
|
||||
(let* ((directory
|
||||
(with-store store
|
||||
(with-status-verbosity (assoc-ref opts 'verbosity)
|
||||
|
@ -196,4 +196,5 @@ to %OLDEST-POSSIBLE-COMMIT is not that of an ancestor."
|
|||
#:validate-channels
|
||||
validate-guix-channel)))))
|
||||
(executable (string-append directory "/bin/guix")))
|
||||
(apply execl (cons* executable executable command-line))))))))
|
||||
(apply execl (cons* executable executable command-line)))
|
||||
(warning (G_ "no command specified; nothing to do~%")))))))
|
||||
|
|
Reference in New Issue