Commit 8df2fd27 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm: add initial --interactive support

parent a7e245c7
......@@ -97,6 +97,7 @@ short=
direct=
sort=
non_interactive=$EPM_AUTO
interactive=
force_yes=
skip_installed=
skip_missed=
......@@ -448,6 +449,11 @@ check_option()
;;
--auto|--assumeyes|--non-interactive) # HELPOPT: non interactive mode
non_interactive="--auto"
interactive=""
;;
--interactive) # HELPOPT: interactive mode (ask before any operation)
interactive="--interactive"
non_interactive=""
;;
--force-yes) # HELPOPT: force yes in a danger cases (f.i., during release upgrade)
force_yes="--force-yes"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment