From 84e2e113763d3022a14d207b940ebe3691867bec Mon Sep 17 00:00:00 2001 From: Jeff Lance Date: Tue, 9 May 2023 20:02:21 +0200 Subject: [PATCH] add calls to other plugins --- install-standalone | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install-standalone b/install-standalone index f627e71..29718ee 100755 --- a/install-standalone +++ b/install-standalone @@ -27,7 +27,11 @@ for config in ${@}; do # cmd=("${BASE_DIR}/${META_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" \ # -p "${BASE_DIR}/${META_DIR}/dotbot-yay/yay.py" -c "$configFile") cmd=("${BASE_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" \ - -p "${BASE_DIR}/dotbot_plugins/dotbot-yay/yay.py" -c "$configFile") + -p "${BASE_DIR}/dotbot_plugins/dotbot-apt-get/aptget.py" \ + -p "${BASE_DIR}/dotbot_plugins/dotbot-ifplatform/ifplatform.py" \ + -p "${BASE_DIR}/dotbot_plugins/dotbot-pamac/pamac.py" \ + -p "${BASE_DIR}/dotbot_plugins/dotbot-yay/yay.py" \ + -c "$configFile") if [[ $config == *"sudo"* ]]; then cmd=(sudo "${cmd[@]}")