Commit 0309402c authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-update: cd / before apt-get update

parent 9eb08e42
......@@ -30,7 +30,12 @@ warmup_hibase
case $PMTYPE in
apt-rpm)
sudocmd apt-get update || return
# TODO: hack against cd to cwd in apt-get on ALT
cd /
sudocmd apt-get update
local ret="$?"
cd - >/dev/null
return $ret
#sudocmd apt-get -f install || exit
;;
apt-dpkg)
......
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