Skip to content

Commit c308d60

Browse files
committed
support external sources with shellcheck
1 parent bec5584 commit c308d60

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ lint/go:
7171
# Use shfmt to determine the shell files, takes editorconfig into consideration.
7272
lint/shellcheck: $(shell shfmt -f .)
7373
@echo "--- shellcheck"
74-
shellcheck $(shell shfmt -f .)
74+
shellcheck -x $(shell shfmt -f .)
7575

7676
peerbroker/proto/peerbroker.pb.go: peerbroker/proto/peerbroker.proto
7777
protoc \

docs/install.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ attempts to use the system package manager detection-reference if possible.
1010
You can preview what occurs during the install process:
1111

1212
```bash
13-
curl -fsSL https://coder.com/install.sh | sh -s -- --dry-run
13+
curl -L https://coder.com/install.sh | sh -s -- --dry-run
1414
```
1515

1616
To install, run:
1717

1818
```bash
19-
curl -fsSL https://coder.com/install.sh | sh
19+
curl -L https://coder.com/install.sh | sh
2020
```
2121

2222
> If you're concerned about the install script's use of `curl | sh` and the
@@ -27,7 +27,7 @@ curl -fsSL https://coder.com/install.sh | sh
2727
You can modify the installation process by including flags. Run the help command for reference:
2828

2929
```bash
30-
curl -fsSL https://coder.com/install.sh | sh -s -- --help
30+
curl -L https://coder.com/install.sh | sh -s -- --help
3131
```
3232

3333
## System packages

0 commit comments

Comments
 (0)