You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2019/04/05 10:57:44 UTC

[mesos] branch master updated: Quoted chmod arguments.

This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new f5c6d96  Quoted chmod arguments.
f5c6d96 is described below

commit f5c6d96c2789da688e16a88b68b156452c24dd8b
Author: Benno Evers <be...@mesosphere.com>
AuthorDate: Fri Apr 5 12:55:53 2019 +0200

    Quoted chmod arguments.
    
    Quoted arguments passed to the `chmod` command in `mesos-build.sh`
    script.
    
    Review: https://reviews.apache.org/r/70386
---
 support/mesos-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/mesos-build.sh b/support/mesos-build.sh
index c2d121d..ee8ef8b 100755
--- a/support/mesos-build.sh
+++ b/support/mesos-build.sh
@@ -36,7 +36,7 @@ fi
 
 # NOTE: We chmod the directory here so that the docker containter can
 # copy out the test report xml files from the container file system.
-chmod 777 ${MESOS_DIR}
+chmod 777 "${MESOS_DIR}"
 
 docker run \
   --rm \