File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ jobs:
16
16
17
17
steps :
18
18
- name : Install defang (latest)
19
- run : eval "$(curl -Ls https://s.defang.io/install)"
19
+ run : eval "$(curl -fsSL https://s.defang.io/install)"
20
20
env :
21
21
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }} # avoid rate limiting
22
22
23
23
- name : Sanity check
24
24
run : defang --version
25
25
26
26
- name : Install defang (specific version)
27
- run : eval "$(curl -Ls https://s.defang.io/install)"
27
+ run : eval "$(curl -fsSL https://s.defang.io/install)"
28
28
env :
29
29
DEFANG_INSTALL_VERSION : v0.5.36
30
30
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # alt name
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Install the Defang CLI from one of the following sources:
29
29
30
30
* Using a shell script:
31
31
```
32
- eval "$(curl -Ls https://s.defang.io/install)"
32
+ eval "$(curl -fsSL https://s.defang.io/install)"
33
33
```
34
34
35
35
* Using [ Go] ( https://go.dev ) :
Original file line number Diff line number Diff line change 3
3
# This script installs the latest release of defang from GitHub. It is designed #
4
4
# to be run like this: #
5
5
# #
6
- # eval "$(curl -Ls https://s.defang.io/install)" #
6
+ # eval "$(curl -fsSL https://s.defang.io/install)" #
7
7
# #
8
8
# This allows us to do some interactive stuff where we can prompt the user for input. #
9
9
# #
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ func Upgrade(ctx context.Context) error {
49
49
}
50
50
51
51
// Default to the shell script
52
- printInstructions (`eval "$(curl -Ls https://s.defang.io/install)"` )
52
+ printInstructions (`eval "$(curl -fsSL https://s.defang.io/install)"` )
53
53
54
54
return nil
55
55
}
You can’t perform that action at this time.
0 commit comments