mirror of
https://github.com/servo/servo.git
synced 2025-07-06 06:53:38 +01:00
No need for && when we have newlines
This commit is contained in:
parent
5a419e4466
commit
c802c5bc4f
1 changed files with 5 additions and 3 deletions
|
@ -42,9 +42,11 @@ def create_task(name, command, artifacts=None, dependencies=None, env=None, cach
|
||||||
"--login",
|
"--login",
|
||||||
"-c",
|
"-c",
|
||||||
"""
|
"""
|
||||||
git clone $GITHUB_EVENT_CLONE_URL repo &&
|
set -e
|
||||||
cd repo &&
|
set -x
|
||||||
git checkout $GITHUB_EVENT_COMMIT_SHA &&
|
git clone $GITHUB_EVENT_CLONE_URL repo
|
||||||
|
cd repo
|
||||||
|
git checkout $GITHUB_EVENT_COMMIT_SHA
|
||||||
""" + command
|
""" + command
|
||||||
],
|
],
|
||||||
"env": env,
|
"env": env,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue