Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 36f0197

Browse files
committed
fix syntax
1 parent bc87b63 commit 36f0197

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.circleci/config.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ jobs:
2222
path: ~/junit
2323
- store_artifacts:
2424
path: ~/junit
25-
- run: Upload FOSSA analysis (from master only)
26-
command: |
27-
if [[ ( -n "$FOSSA_API_KEY" ) && ( "$CIRCLE_BRANCH" == "master" ) ]]; then
28-
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash;
29-
fossa init;
30-
FOSSA_API_KEY=$FOSSA_API_KEY fossa -p java-client;
31-
fi
25+
- run:
26+
name: Upload FOSSA analysis (from master only)
27+
command: |
28+
if [[ ( -n "$FOSSA_API_KEY" ) && ( "$CIRCLE_BRANCH" == "master" ) ]]; then
29+
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash;
30+
fossa init;
31+
FOSSA_API_KEY=$FOSSA_API_KEY fossa -p java-client;
32+
fi

0 commit comments

Comments
 (0)