I’m writing an APT package and I want to create a directory in the ~
directory.
When I run the command mkdir -p ~/.name/other/stuff
in the preinst
script this command doesn’t create the directory.
I’ve tried to run the command in the postinst
file, but nothing changed.
I’m using Bash on Ubuntu 22.04.
9