commit 2a406dd6bcc57b4fe5b248fc5169b7f1c3392ea3
parent 34baf1f4023775caf039dca3617a3aa6b1675b0f
Author: Jan Pobříslo <ccx@te2000.cz>
Date: Thu, 23 Jun 2022 02:34:44 +0200
fix copied variable name
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zsh-functions/confz_containers_init b/zsh-functions/confz_containers_init
@@ -1050,7 +1050,7 @@ confz_container_nix_packages_installed_check() {
local -A stat_info
zstat -L -H stat_info $profile_dir
# while it's a symlink
- while (( $fileset_stat_cur[mode] >> 12 == 10 )); do
+ while (( $stat_info[mode] >> 12 == 10 )); do
if [[ $stat_info[link] == /* ]]; then
profile_dir=$root$stat_info[link]
else