There is only a tiny fault I think. sudo opens a new shell for executing the command and after sudo the user is root. So maybe you should use something like this:
MYUSER=$USER
sudo chown $MYUSER:$MYUSER
as i think MYUSER is not systemspezific overwritten and shall work.