diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2017-06-07 22:50:55 -0400 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2017-06-07 22:52:50 -0400 |
commit | eb2820bc36a2025aebce1266fbd8936deab0a4a2 (patch) | |
tree | 4c757042bffb8582940e8a14cb825b085a550138 /jjb | |
parent | 26f47542741f17b0d534565fc1cc6a6e6948dd35 (diff) |
fix workspace permission error
after https://gerrit.opnfv.org/gerrit/#/c/35833/ merged
still fails https://build.opnfv.org/ci/job/compass-verify-deploy-virtual-xenial-master/360/console
by checking the host the file was changed to <jenkins root>
it should be <jenkins jenkins>
Change-Id: I44bab9aaedaa18fc2c2b654bf156703904c220c7
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/global/releng-macros.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/global/releng-macros.yml b/jjb/global/releng-macros.yml index ced335cb9..5341db464 100644 --- a/jjb/global/releng-macros.yml +++ b/jjb/global/releng-macros.yml @@ -170,7 +170,7 @@ - pre-scm-buildstep: - shell: | #!/bin/bash - sudo chown -R $USER $WORKSPACE || exit 1 + sudo chown -R $USER:$USER $WORKSPACE || exit 1 - builder: name: build-html-and-pdf-docs-output |