Skip to content

Commit 1e49259

Browse files
authored
Merge pull request #692 from basho/bugfix/var-tmp-yokozuna-permissions
fix issue #691: building may fail due to bad /var/tmp/yokozuna permissions
2 parents c602f39 + 9e69576 commit 1e49259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/grab-solr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ get_solr()
5656
if [ -d $TMP_DIR ]; then
5757
cp $FILENAME $TMP_DIR
5858
else
59-
mkdir $TMP_DIR
59+
mkdir -m 1777 $TMP_DIR
6060
cp $FILENAME $TMP_DIR
6161
fi
6262
fi

0 commit comments

Comments
 (0)