mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-01-22 14:15:44 +01:00
b1cef063a1
BUG: Creating a new directory under /home/<user>/ from the /work folder does not work. In fact, going into the home directory and trying to run mkdir fails as well. SOLUTION: Turns out chown -R <user>:<user> was run on $HOME/* instead of on $HOME. This means that /home/<user> was still under the ownership of root:root, hence preventing any writes to non-root users.