Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 9a036ff

Browse files
committed
Update CircleCI config
Properly download the script and execute it instead of streaming it to `sh`.
1 parent ec3814d commit 9a036ff

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

circle.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
test:
1+
dependencies:
22
override:
3-
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
3+
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
4+
- chmod u+x build-package.sh
45

5-
dependencies:
6+
test:
67
override:
7-
# If nothing is put here, CircleCI will run `npm install` using the system Node.js
8-
- echo "Managed in the script"
8+
- ./build-package.sh

0 commit comments

Comments
 (0)