Browse Source

Pass a real flag to mkdir instead of a pretend one

Change-Id: I96296c79c6c6ab091cb94a44b1a2e235474db534
Reviewed-on: http://gerrit.dmdirc.com/1641
Reviewed-by: Greg Holmes <greg@dmdirc.com>
Automatic-Compile: DMDirc Local Commits <dmdirc@googlemail.com>
tags/0.6.5b1
Chris Smith 13 years ago
parent
commit
9e7726d954
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      dynamicProperties.sh

+ 1
- 1
dynamicProperties.sh View File

@@ -8,7 +8,7 @@ if [ "" = "${TARGET}" -o ! -e "${SOURCE}" ]; then
8 8
 else
9 9
 	# Make sure target exists.
10 10
 	if [ ! -e "${TARGET}" ]; then
11
-		mkdir -P `dirname "${TARGET}"`
11
+		mkdir -p `dirname "${TARGET}"`
12 12
 		touch "${TARGET}"
13 13
 	fi;
14 14
 	

Loading…
Cancel
Save