From 9e695764bd61cd997f13a99a8f7342cd2f69ce03 Mon Sep 17 00:00:00 2001 From: Bill Soudan Date: Thu, 6 Oct 2016 09:51:45 -0400 Subject: [PATCH] use mode 1777 when creating cache directory --- tools/grab-solr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/grab-solr.sh b/tools/grab-solr.sh index de4ef057..982c8ff0 100755 --- a/tools/grab-solr.sh +++ b/tools/grab-solr.sh @@ -56,7 +56,7 @@ get_solr() if [ -d $TMP_DIR ]; then cp $FILENAME $TMP_DIR else - mkdir $TMP_DIR + mkdir -m 1777 $TMP_DIR cp $FILENAME $TMP_DIR fi fi