Skip to content

Commit

Permalink
build: swap wget for curl and add it as a dependency (#784)
Browse files Browse the repository at this point in the history
curl comes pre-installed on most Mac and Linux machines and seems 
to be more widely available.
  • Loading branch information
hamidzr authored Jun 26, 2020
1 parent e629043 commit d965527
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ git clone [email protected]:determined-ai/determined.git
- Docker (>= 19.03)
- Protoc (>= 3.0)
- Java (>= 7)
- cURL (>= 7)

### Building Determined

Expand Down
4 changes: 2 additions & 2 deletions webui/api-ts-sdk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ all: get-deps build
.PHONY: get-deps-swagger
get-deps-swagger:
mkdir -p deps
wget https://repo1.maven.org/maven2/io/swagger/swagger-codegen-cli/2.4.14/swagger-codegen-cli-2.4.14.jar \
-O deps/swagger-codegen-cli.jar
curl https://repo1.maven.org/maven2/io/swagger/swagger-codegen-cli/2.4.14/swagger-codegen-cli-2.4.14.jar \
-o deps/swagger-codegen-cli.jar

.PHONY: get-deps-package
get-deps-package:
Expand Down

0 comments on commit d965527

Please sign in to comment.