From 91ccc302abe6f71de2daf8641c0402c15f25d376 Mon Sep 17 00:00:00 2001 From: pvincent Date: Thu, 23 Oct 2025 00:49:17 +0400 Subject: [PATCH] fix install.sh no configuration file --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 02d2208..ea45065 100755 --- a/install.sh +++ b/install.sh @@ -37,7 +37,7 @@ function install_miaou_proxmox { git pull cd - >/dev/null fi - status=$(append_or_replace '^PATH=\$PATH:/opt/miaou-proxmox/bin' 'PATH=$PATH:/opt/miaou-proxmox/bin' $HOME/.bashrc) + status=$(/opt/miaou-bash/tools/append_or_replace '^PATH=\$PATH:/opt/miaou-proxmox/bin' 'PATH=$PATH:/opt/miaou-proxmox/bin' $HOME/.bashrc) [[ $status == 'appended' ]] && echo 'successfully installed! please run `source $HOME/.bashrc`' }