Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions bin/backup
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -172,7 +170,6 @@ while :; do
esac
shift
done
# @formatter:on

check-root

Expand Down
3 changes: 0 additions & 3 deletions bin/benchmark
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;;
Expand Down Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions bin/clean
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -94,7 +92,6 @@ while :; do
esac
shift
done
# @formatter:on

uid=$(id -u)
if [[ "${uid}" -ne 0 ]]; then
Expand Down
3 changes: 0 additions & 3 deletions bin/pass-man
Original file line number Diff line number Diff line change
Expand Up @@ -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 "${@}" ;;
Expand All @@ -116,6 +114,5 @@ case "${action}" in
"") print-error Action missing && _usage ;;
*) print-error Invalid action && _usage ;;
esac
# @formatter:on

exit 0