Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Mar 26, 2024
1 parent e70b779 commit 9e7928d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ sudo yum install -y https://pkgs.kaos.st/kaos-repo-latest.el$(grep 'CPE_NAME' /e
sudo yum install atlassian-cloud-backuper
```

#### Prebuilt binaries

You can download prebuilt binaries for Linux from [EK Apps Repository](https://apps.kaos.st/atlassian-cloud-backuper/latest):

```bash
bash <(curl -fsSL https://apps.kaos.st/get) atlassian-cloud-backuper
```

#### Container Image

The latest version of `atlassian-cloud-backuper` also available as container image on [GitHub Container Registry](https://kaos.sh/p/atlassian-cloud-backuper) and [Docker Hub](https://kaos.sh/d/atlassian-cloud-backuper).

### Usage

#### Standalone
Expand Down
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ func genUsage() *usage.Info {
info.AddOption(OPT_HELP, "Show this help message")
info.AddOption(OPT_VER, "Show version")

if !container.IsContainer() {
if container.IsContainer() {
addUnitedOption(info, ACCESS_ACCOUNT, "Account name", "name")
addUnitedOption(info, ACCESS_EMAIL, "User email with access to API", "email")
addUnitedOption(info, ACCESS_API_KEY, "API key", "key")
Expand Down

0 comments on commit 9e7928d

Please sign in to comment.