Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-04-29 17:15:45 +0000
committerDavid Williams2016-04-29 17:15:45 +0000
commit490cfaa695cd282350ae23c8e670d3e125eca68e (patch)
tree7d1e795ee6f53320def8de1a1af8804ce4fc517b /production/master-build.sh
parent58134af727c24ae1fa61e0425c470a6d3a1e21c4 (diff)
downloadeclipse.platform.releng.aggregator-490cfaa695cd282350ae23c8e670d3e125eca68e.tar.gz
eclipse.platform.releng.aggregator-490cfaa695cd282350ae23c8e670d3e125eca68e.tar.xz
eclipse.platform.releng.aggregator-490cfaa695cd282350ae23c8e670d3e125eca68e.zip
[releng] Attempting to get permissions set on build directory
Diffstat (limited to 'production/master-build.sh')
-rwxr-xr-xproduction/master-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/master-build.sh b/production/master-build.sh
index 4366dfe03..bc9457f70 100755
--- a/production/master-build.sh
+++ b/production/master-build.sh
@@ -94,8 +94,8 @@ umask 0002
echo "umask after setting in master-build.sh: $(umask)"
mkdir -p "${buildDirectory}"
checkForErrorExit $? "Could not create buildDirectory: ${buildDirectory}"
-chgrp -c eclipse.platform.releng "${buildDirectory}"
-chmod -c g+s "${buildDirectory}"
+chgrp -v eclipse.platform.releng "${buildDirectory}"
+chmod -v g+s "${buildDirectory}"
mkdir -p "${logsDirectory}"
checkForErrorExit $? "Could not create buildlogs directory: ${logsDirectory}"

Back to the top