Skip to content

Commit

Permalink
fix wrong variable in copy_admin_scripts (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdihasnat authored Oct 21, 2024
1 parent 66d84c8 commit 29b7f3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/copy_admin_scripts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cd $ADMIN_SCRIPTS_DIR
homedir="/home/$ADMIN_USER"
for file in *; do
cp -rv $file "$homedir/"
chown -R -c -v $user:$user "$homedir/$file"
chown -R -c -v $ADMIN_USER:$ADMIN_USER "$homedir/$file"
chmod -R -v 750 "$homedir/$file"
done

Expand Down

0 comments on commit 29b7f3c

Please sign in to comment.