Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
emmercm committed Mar 4, 2024
1 parent a1a3637 commit 52269c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .10_macos.bash
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if [[ -x "$(command -v brew)" && ! -x "$(command -v mas)" ]]; then
# Installed applications aren't enumerated immediately, `mas list` may return nothing
fi
if [[ -x "$(command -v mas)" ]]; then
local mas_list=$(mas list)
mas_list=$(mas list)

# 1Password for Safari
# echo "${mas_list}" | grep '^1569813296 ' &> /dev/null || mas install 1569813296
Expand Down
2 changes: 1 addition & 1 deletion .20_kubernetes.bash
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ __kube_funcs() {
# @param {string=} $1 App label
# @param {...string} Additional kubectl options
ktop() {
watch "kubectl top pods --containers ${1:+--selector="app=$1"} "${@:2}" | awk 'NR == 1; NR > 1 {print \$0 | \"sort -n -k3 -r\"}'"
watch "kubectl top pods --containers ${1:+--selector="app=$1"} \"${@:2}\" | awk 'NR == 1; NR > 1 {print \$0 | \"sort -n -k3 -r\"}'"
}
}
__kube_funcs

0 comments on commit 52269c4

Please sign in to comment.