Skip to content

Commit 60f907f

Browse files
committed
docs: Lint fix
1 parent 3c6f749 commit 60f907f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

migration/main/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ to: main
111111
./bin/ck8s update-ips "${CK8S_CLUSTER}" apply
112112
```
113113

114-
### Apply upgrade - *disruptive*
114+
### Apply upgrade - _disruptive_
115115

116116
> **Disruptive, done during maintenance window.**
117117

migration/promote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ main() {
2222

2323
ver.parse next "${series}"
2424

25-
local target_version="v${ver[next-major]}.${ver[next-minor]}"
25+
local target_version="v${ver["next-major"]}.${ver["next-minor"]}"
2626
local target_migration="${ROOT}/migration/${target_version}"
2727

2828
if [[ -d "${target_migration}" ]]; then

scripts/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ log.fatal() {
8787
log.fatal.nested() {
8888
shopt -s extdebug
8989
local -a function
90-
readarray -t function <<< "$(declare -F "${FUNCNAME[1]}" | tr ' ' '\n')"
90+
readarray -t function <<<"$(declare -F "${FUNCNAME[1]}" | tr ' ' '\n')"
9191
9292
log.error "in $(esc.red "${function[0]} at ${function[2]}:${function[1]}"): ${*}\n--- This is invalid use of a helper functions and must be fixed ---"
9393
exit 1

0 commit comments

Comments
 (0)