diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2023-05-26 12:36:57 +0300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-27 08:09:00 +0700 |
commit | 54fb2968d5cc5a1963ad4c0390e5142d47e80bb6 (patch) | |
tree | 8020a0e84ec30979f8da1d9aa6a1906632bd72d9 /system/slpkg/doinst.sh | |
parent | e7bdc2326aee6ac2b6c2e440da011f1314a48542 (diff) |
system/slpkg: Updated for version 4.8.7.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/slpkg/doinst.sh')
-rw-r--r-- | system/slpkg/doinst.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/system/slpkg/doinst.sh b/system/slpkg/doinst.sh index aefd7614b8bbc..74029f7a09453 100644 --- a/system/slpkg/doinst.sh +++ b/system/slpkg/doinst.sh @@ -8,9 +8,10 @@ config() { fi } -config etc/slpkg/slpkg.toml.new -config etc/slpkg/repositories.toml.new -config etc/slpkg/blacklist.toml.new +FILES="slpkg repositories blacklist rules" +for file in $FILES; do + config etc/slpkg/$file.toml.new +done if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 |