kiss: Fix mkdir

This commit is contained in:
Dylan Araps 2020-02-06 10:14:48 +02:00
parent e49305ec44
commit 321eb542fe
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 1 additions and 1 deletions

2
kiss
View File

@ -941,7 +941,7 @@ pkg_install() {
cd "$tar_dir/$pkg_name"
# Create all directories beforehand.
find etc -type d -exec mkdir -p {} +
find etc -type d -exec mkdir -p /{} +
# Handle files in /etc/ based on a 3-way checksum check.
find etc -type f | while read -r file; do