Commit 54771f18 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-play: fix save installed app

parent b7ecb964
...@@ -23,7 +23,7 @@ epm_vardir=/var/lib/eepm ...@@ -23,7 +23,7 @@ epm_vardir=/var/lib/eepm
__save_installed_app() __save_installed_app()
{ {
[ -d "$epm_vardir" ] || return 0 [ -d "$epm_vardir" ] || return 0
estrlist list "$@" | $SUDO tee $epm_vardir/installed-app >/dev/null estrlist list "$@" | $SUDO tee -a $epm_vardir/installed-app >/dev/null
} }
__remove_installed_app() __remove_installed_app()
......
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