fix install configs and use SUDO_GID

flagged by alex-orange
This commit is contained in:
Andre Puschmann 2019-09-09 17:00:02 +02:00
parent 2e426948fe
commit e93b4b0e10
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,8 @@ install_file(){
# Set file ownership to user calling sudo
if [ $SUDO_USER ]; then
user=$SUDO_USER
chown $user:$user $dest_path
group=$SUDO_GID
chown $user:$group $dest_path
fi
else
echo " - $source_path doesn't exists. Skipping it."