Merge pull request #30 from konimex/master

cache: set sticky bit too to the children dirs
This commit is contained in:
black 2019-07-23 09:41:19 +03:00 committed by GitHub
commit 8581b4a3d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

7
kiss
View File

@ -130,7 +130,9 @@ pkg_sources() {
# Store each downloaded source in named after the package it
# belongs to. This avoid conflicts between two packages having a
# source of the same name.
mkdir -p "$src_dir/$1" && cd "$src_dir/$1"
mkdir -p "$src_dir/$1"
chmod "$src_dir/$1"
cd "$src_dir/$1"
# Find the package's repository files. This needs to keep
# happening as we can't store this data in any kind of data
@ -1028,6 +1030,9 @@ main() {
"${bin_dir:=$cac_dir/bin}" \
|| die "Couldn't create cache directories."
# Set sticky bit in the "permanent" directories so users can write to it.
chmod 1777 "$cac_dir" "$src_dir" "$bin_dir"
args "$@"
}