Skip to content

Commit

Permalink
Minors
Browse files Browse the repository at this point in the history
  • Loading branch information
krystian-panek-vmltech committed Jan 26, 2023
1 parent 790e367 commit ec05388
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/aem/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func (c *CLI) printOutputTextIndented(writer *textio.PrefixWriter, value any) {
return strings.Compare(fmt.Sprintf("%v", keys[k1].Interface()), fmt.Sprintf("%v", keys[k2].Interface())) < 0
})
for _, k := range keys {
_, _ = writer.WriteString(fmt.Sprintf("%s\n", k))
_, _ = writer.WriteString(fmt.Sprintf("%s\n", k)) // TODO camelCase to human
mv := rv.MapIndex(k).Interface()
c.printOutputTextIndented(dw, mv)
}
Expand Down
2 changes: 1 addition & 1 deletion project/aem/api.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ARCH=$(detectArch)

AEM_DIR="aem"
HOME_DIR="${AEM_DIR}/home"
DOWNLOAD_DIR="${HOME_DIR}/tmp"
DOWNLOAD_DIR="${HOME_DIR}/opt"

BIN_DOWNLOAD_NAME="aemc-cli"
BIN_DOWNLOAD_URL="https://github.com/wttech/aemc/releases/download/v${VERSION}/${BIN_DOWNLOAD_NAME}_${OS}_${ARCH}.tar.gz"
Expand Down

0 comments on commit ec05388

Please sign in to comment.