Commit cad81b6b authored by Vitaly Lipatov's avatar Vitaly Lipatov

__epm_print_warning_for_nonalt_packages(): s/discretion/risk/

parent 5588b783
...@@ -79,17 +79,17 @@ __epm_print_warning_for_nonalt_packages() ...@@ -79,17 +79,17 @@ __epm_print_warning_for_nonalt_packages()
local i local i
for i in $* ; do for i in $* ; do
if epm_status_repacked "$i" ; then if epm_status_repacked "$i" ; then
warning "%%% You are trying install package $i repacked from third-party software source. Use it at your own discretion. %%%" warning "%%% You are trying install package $i repacked from third-party software source. Use it at your own risk. %%%"
continue continue
fi fi
if epm_status_thirdparty "$i" ; then if epm_status_thirdparty "$i" ; then
warning "%%% You are trying install package $i from third-party software source. Use it at your own discretion. %%%" warning "%%% You are trying install package $i from third-party software source. Use it at your own risk. %%%"
continue continue
fi fi
if ! epm_status_original "$i" ; then if ! epm_status_original "$i" ; then
warning "%%% You are trying install package $i not from official $DISTRNAME/$DISTRVERSION repository. Use it at your own discretion. %%%" warning "%%% You are trying install package $i not from official $DISTRNAME/$DISTRVERSION repository. Use it at your own risk. %%%"
continue continue
fi fi
done done
......
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