1
0
mirror of https://github.com/limosek/zaf.git synced 2024-11-13 05:59:06 +01:00

Repaired function plugin_version

This commit is contained in:
Lukas Macura 2016-04-04 15:05:18 +02:00
parent c0bbe2e30e
commit 4964988b36

View File

@ -261,16 +261,18 @@ zaf_discovery_plugins() {
}
zaf_plugin_version() {
local plugindir
local cfile
if [ -z "$1" ]; then
echo "Missing plugin name";
exit 1
zaf_err "Missing plugin name.";
fi
plugindir="${ZAF_PLUGINS_DIR}/$1"
cfile="$plugindir/control"
if [ -d "$plugindir" ] ; then
zaf_ctrl_get_option "$cfile" Version
if zaf_is_plugin "$1"; then
plugindir="${ZAF_PLUGINS_DIR}/$1"
cfile="$plugindir/control.zaf"
zaf_ctrl_get_global_option $cfile Version
else
echo "Plugin $1 not installed"
zaf_err "Plugin $1 not installed."
fi
}