mirror of
https://github.com/servo/servo.git
synced 2025-07-03 21:43:41 +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",
|
||||
"-c",
|
||||
"""
|
||||
git clone $GITHUB_EVENT_CLONE_URL repo &&
|
||||
cd repo &&
|
||||
git checkout $GITHUB_EVENT_COMMIT_SHA &&
|
||||
set -e
|
||||
set -x
|
||||
git clone $GITHUB_EVENT_CLONE_URL repo
|
||||
cd repo
|
||||
git checkout $GITHUB_EVENT_COMMIT_SHA
|
||||
""" + command
|
||||
],
|
||||
"env": env,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue