From 8d9bd4ecf781f08d4c1d9b353f9a3c384f63ffc7 Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Wed, 6 Feb 2013 16:54:38 +0200 Subject: [PATCH] chmod: add missing -p option to mkdir. --- chmod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chmod b/chmod index 1e5379ae..e9904a70 100755 --- a/chmod +++ b/chmod @@ -23,7 +23,7 @@ touch ~/.ICEauthority chmod o-rw+x,g-rw+x ~ echo "Creating apache2 UserDir..." -mkdir ~/public_html/ +mkdir -p ~/public_html/ echo "Allowing everyone to Read and eXecute everything in your apache2" echo "userdir". chmod o+rx-w,g+rx-w ~/public_html/ -R