mirror of
https://github.com/YunoHost-Apps/plume_ynh.git
synced 2024-09-03 20:15:54 +02:00
Fix chmod
This commit is contained in:
parent
c49eb3fa92
commit
59b7c553c0
3 changed files with 3 additions and 3 deletions
|
@ -128,7 +128,7 @@ chmod +x $final_path/.cargo/bin/*
|
|||
# Remove empty bin directory
|
||||
ynh_secure_remove --file="$final_path/$app/bin"
|
||||
|
||||
chmod 750 "$final_path"
|
||||
chmod -R 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:$app "$final_path"
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ ynh_script_progression --message="Restoring the app main directory..."
|
|||
|
||||
ynh_restore_file --origin_path="$final_path"
|
||||
|
||||
chmod 750 "$final_path"
|
||||
chmod -R 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:$app "$final_path"
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ then
|
|||
ynh_secure_remove --file="$final_path/$app/bin"
|
||||
fi
|
||||
|
||||
chmod 750 "$final_path"
|
||||
chmod -R 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:$app "$final_path"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue