Skip to content

Commit

Permalink
Use -sSL in curl examples
Browse files Browse the repository at this point in the history
  • Loading branch information
davegaeddert committed Dec 21, 2021
1 parent 5f074cd commit 8444585
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The key features of deps are:
## Quick install

```console
$ curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
$ curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
```

## Official components
Expand Down
4 changes: 2 additions & 2 deletions docs/content/bitbucket-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ pipelines:
- step:
image: "python:3.7"
script:
- curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
- python3 -m venv .venv
- .venv/bin/pip install -r requirements.txt
- $HOME/bin/deps ci --type python
- step:
image: "node:latest"
script:
- curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
- yarn install
- $HOME/bin/deps ci --type js
```
Expand Down
4 changes: 2 additions & 2 deletions docs/content/circleci.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
- image: circleci/python:3.7
steps:
- checkout
- run: curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- run: curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
- run: pipenv sync --dev
- run: $HOME/bin/deps ci --type python
deps-node:
docker:
- image: circleci/node:12
steps:
- checkout
- run: curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- run: curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
- run: yarn install
- run: $HOME/bin/deps ci --type js

Expand Down
2 changes: 1 addition & 1 deletion docs/content/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- run: |
pip install -U pip pipenv
./scripts/install
- run: curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- run: curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
- run: $HOME/bin/deps ci
env:
DEPS_TOKEN: ${{ secrets.DEPS_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions docs/content/gitlab-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ deps-js:
image: "node:latest"
only: [schedules]
script:
- curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
- yarn install
- $HOME/bin/deps ci --type js

deps-python:
image: "python:3"
only: [schedules]
script:
- curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
- pipenv sync --dev
- $HOME/bin/deps ci --type python
```
2 changes: 1 addition & 1 deletion docs/content/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ <h3 class="mt-4 text-lg text-gray-800">Pre- and Post-Processing</h3>

<!-- <div class="mt-10">
<h2 class="text-3xl font-semibold text-center border-0">Install <code>deps</code> on Your Machine</h2>
<code class="inline-block p-4 text-blue-100 bg-gray-900 rounded shadow xl:text-lg">$ curl https://deps.app/install.sh | bash -s -- -b $HOME/bin</code>
<code class="inline-block p-4 text-blue-100 bg-gray-900 rounded shadow xl:text-lg">$ curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin</code>
<p class="mt-2 text-sm text-center text-gray-600 lg:text-right">or manually <a href="https://github.com/dropseed/deps/releases" class="underline">download a release on GitHub</a></p>
</div> -->

Expand Down
2 changes: 1 addition & 1 deletion docs/content/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Locally `deps` can:
To install `deps`,
[manually download a release](https://github.com/dropseed/deps/releases) or use the auto-install script:
```console
$ curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
$ curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
```

## Checking for dependency updates
Expand Down
2 changes: 1 addition & 1 deletion docs/content/other-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The basic steps for using `deps ci` are generally the same, regardless of provid

## 2. Add a scheduled job to run deps

- Use the install script to get the latest version (`curl https://deps.app/install.sh | bash -s -- -b $HOME/bin`)
- Use the install script to get the latest version (`curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin`)
- Run the `deps ci` command

## 3. Add a `deps.yml` (optional)
Expand Down
2 changes: 1 addition & 1 deletion docs/content/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Follow these steps to see how deps works and get your first automated pull reque
[Download a release manually](https://github.com/dropseed/deps/releases), or use the auto-install script:

```console
$ curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
$ curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
```

## 2. Try deps upgrade
Expand Down
2 changes: 1 addition & 1 deletion docs/content/travisci.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
depth: false # required for existing deps branches to be available
install:
- ./scripts/install_requirements
- curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
- curl -sSL https://deps.app/install.sh | bash -s -- -b $HOME/bin
script: deps ci
```
2 changes: 1 addition & 1 deletion docs/wip/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ output based on specified input.
## Installing deps on your machine

```console
$ curl https://deps.app/install.sh | bash -s 2.5.0-beta.1
$ curl -sSL https://deps.app/install.sh | bash -s 2.5.0-beta.1
```

Or, you can download binaries manually from the [releases on
Expand Down

0 comments on commit 8444585

Please sign in to comment.