Skip to content

Commit 27f74e4

Browse files
authored
Merge pull request #1 from altiscope/yamaszone/installation_macos_linux
Installation step for macOS/Linux
2 parents 30905b6 + 94a4141 commit 27f74e4

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
11
# `stack` CLI
22
Airbus UTM Platform `stack` CLI
3+
4+
## Installation
5+
6+
### macOS/Linux one-liner
7+
```
8+
curl -sSL https://github.com/altiscope/platform-stack-cli/releases/download/v1.10.0/stack_$(
9+
bash -c '[[ $OSTYPE == darwin* ]] && echo darwin || echo linux'
10+
)_amd64 -o stack && chmod a+x stack && sudo mv stack /usr/local/bin/
11+
```
12+
13+
### macOS
14+
```
15+
curl -sSL https://github.com/altiscope/platform-stack-cli/releases/download/v1.10.0/stack_darwin_amd64 -o stack && chmod a+x stack && sudo mv stack /usr/local/bin/
16+
```
17+
18+
### Linux
19+
```
20+
curl -sSL https://github.com/altiscope/platform-stack-cli/releases/download/v1.10.0/stack_linux_amd64 -o stack && chmod a+x stack && sudo mv stack /usr/local/bin/
21+
```

0 commit comments

Comments
 (0)