Commit 9d3ad37b authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm: add --nodeps options recognize

parent 352d160d
...@@ -60,6 +60,7 @@ set_pm_type ...@@ -60,6 +60,7 @@ set_pm_type
verbose= verbose=
quiet= quiet=
nodeps=
non_interactive= non_interactive=
skip_installed= skip_installed=
epm_cmd= epm_cmd=
...@@ -168,6 +169,10 @@ for opt in "$@" ; do ...@@ -168,6 +169,10 @@ for opt in "$@" ; do
--quiet) # HELPOPT: quiet mode (do not print commands before exec) --quiet) # HELPOPT: quiet mode (do not print commands before exec)
quiet=1 quiet=1
;; ;;
--nodeps) # HELPOPT: skip dependency check (during install/simulate and so on)
fatal "--nodeps not realized yet"
nodeps="--nodeps"
;;
--auto) # HELPOPT: non interactive mode --auto) # HELPOPT: non interactive mode
non_interactive=1 non_interactive=1
;; ;;
......
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