Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bash example #1

Merged
merged 1 commit into from
Aug 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.MD
Expand Up @@ -33,11 +33,12 @@ java -jar ConcourseCCtray.java ^

Bash
```bash
java -jar ConcourseCCtray.java \
-Dconccourse.username={username} \
-Dconcourse.password={password} \
-Dconcourse.team={team} \
-Dconcourse.url={url}
SERVER_PORT=8080 java \
-Dconcourse.username={username} \
-Dconcourse.password="{password}" \
-Dconcourse.team={team} \
-Dconcourse.url="{url}" \
-jar target/ConcourseCCtray-*.jar
```

Running for multiple Teams
Expand All @@ -63,4 +64,4 @@ If username and password, team, or url are not passed it will use that defined i
Point nevergreen to `http://localhost:8080/cctray.xml?team={team}&url={concourseURL}` and set the username and
password to the same as your concourse username and password.

If username and password, team, or url are not passed it will use that defined in application properties.
If username and password, team, or url are not passed it will use that defined in application properties.