Skip to content

Commit

Permalink
kiss: Fix directory permissions
Browse files Browse the repository at this point in the history
FossilOrigin-Name: e7372a9e612621cb35a272a6d25918a5433fb55aae60e4bcd2c810c5d967b33e
  • Loading branch information
cemkeylan committed Apr 26, 2020
1 parent f5c9014 commit 7380fa1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion kiss
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,11 @@ pkg_install_files() {
case $line in /etc/*) ;;
*/) [ -d "$line" ] ||
install -o root -g root -m "$rwx" \
-d "$KISS_ROOT/$line" ;;
-d "$KISS_ROOT/$line"

chmod -s "$KISS_ROOT/$line"
;;

*) test "$1" "$KISS_ROOT/$line" ||
if [ -h "$2/$line" ]; then
[ -d "$KISS_ROOT/$line" ] && continue
Expand Down

0 comments on commit 7380fa1

Please sign in to comment.