You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by bh...@apache.org on 2020/05/21 22:03:47 UTC

[beam] branch master updated: Website build: Remove -u root (#11625)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 105f265  Website build: Remove -u root (#11625)
105f265 is described below

commit 105f2657a730672b70fbb3ec4a2f111247a5cae1
Author: Brian Hulette <bh...@google.com>
AuthorDate: Thu May 21 15:03:23 2020 -0700

    Website build: Remove -u root (#11625)
---
 website/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/build.gradle b/website/build.gradle
index 235cb84..b5988d8 100644
--- a/website/build.gradle
+++ b/website/build.gradle
@@ -119,7 +119,7 @@ task setupDockerContainer(type: Exec) {
   }
 
   // Create the config to point to a GitHub or Colab blob in the repo, e.g. apache/beam/blob/master
-  commandLine 'docker', 'exec', '-u', 'root',
+  commandLine 'docker', 'exec',
     "${->startDockerContainer.containerId()}", '/bin/bash', '-c',
     """echo '[params]\n  branch_repo = "${getBranchRepo()}"' > /tmp/_config_branch_repo.toml"""
 }