From 7f0129df6c68e50318d1bc84a72486ca6496a699 Mon Sep 17 00:00:00 2001 From: udeved Date: Tue, 13 Jan 2015 13:49:06 +0100 Subject: [PATCH] fix set path after rename --- lib/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.sh b/lib/util.sh index e528aef..f55a58b 100644 --- a/lib/util.sh +++ b/lib/util.sh @@ -359,7 +359,7 @@ load_config(){ load_sets(){ local prof temp - for item in $(ls ${sets_dir}/*.set); do + for item in $(ls ${profile_dir_pkg}/*.set); do temp=${item##*/} prof=${prof:-}${prof:+|}${temp%.set} done