diff --git a/bin/backup b/bin/backup index 0a71fbe..a051c36 100755 --- a/bin/backup +++ b/bin/backup @@ -86,8 +86,6 @@ expire_date= archive_prefix= quiet=() -# @formatter:off -# TEMP: remove when https://github.com/lovesegfault/beautysh/issues/265 is fixed while :; do case "${1:-}" in -s | --source) @@ -172,7 +170,6 @@ while :; do esac shift done -# @formatter:on check-root diff --git a/bin/benchmark b/bin/benchmark index 52ebb40..40e1413 100755 --- a/bin/benchmark +++ b/bin/benchmark @@ -362,8 +362,6 @@ report_file_prefix= sys_check= benchmark_depth= params_file= -# @formatter:off -# TEMP: remove when https://github.com/lovesegfault/beautysh/issues/265 is fixed while :; do case "${1:-}" in -r | --report) create_report=1 ;; @@ -401,7 +399,6 @@ while :; do esac shift done -# @formatter:on if [[ -z "${sys_check}" && -z "${benchmark_depth}" ]]; then echo "Benchmark depth missing (quick or full)" >&2 diff --git a/bin/clean b/bin/clean index 25aabe5..4b3162c 100755 --- a/bin/clean +++ b/bin/clean @@ -64,8 +64,6 @@ journal_retention=2w quiet=() redirection=/dev/stdout -# @formatter:off -# TEMP: remove when https://github.com/lovesegfault/beautysh/issues/265 is fixed while :; do case "${1:-}" in -j | --journal) @@ -94,7 +92,6 @@ while :; do esac shift done -# @formatter:on uid=$(id -u) if [[ "${uid}" -ne 0 ]]; then diff --git a/bin/pass-man b/bin/pass-man index f73159c..8204ed8 100755 --- a/bin/pass-man +++ b/bin/pass-man @@ -97,8 +97,6 @@ action="${1:-}" [[ -n "${action}" ]] && shift # Switch action -# @formatter:off -# TEMP: remove when https://github.com/lovesegfault/beautysh/issues/265 is fixed case "${action}" in open) _vault-open "${@}" ;; close) _vault-close "${@}" ;; @@ -116,6 +114,5 @@ case "${action}" in "") print-error Action missing && _usage ;; *) print-error Invalid action && _usage ;; esac -# @formatter:on exit 0