limosek-zaf/lib/zaf.lib.sh

16 lines
292 B
Bash
Raw Normal View History

2016-03-23 14:37:51 +01:00
# Update repo
zaf_update_repo() {
cd ${ZAF_REPO_DIR} && git pull
}
# List installed plugins
zaf_list_installed_plugins() {
cd ${ZAF_PLUGINS_DIR}; ls -d
}
# Install plugin.
# Parameter is url, directory or plugin name (will be searched in default plugin dir)
zaf_install_plugin() {
a
}