Skip to content

Commit

Permalink
Merge pull request ivan-hc#950 from ivan-hc/dev
Browse files Browse the repository at this point in the history
Allow use of "less", printing messages on files etcetera...
  • Loading branch information
ivan-hc authored Sep 16, 2024
2 parents 30f389e + 4e1fb3f commit 783af21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions APP-MANAGER
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

AMVERSION="8.2-2"
AMVERSION="8.2.1"

# Determine main repository and branch
AMREPO="https://raw.githubusercontent.com/ivan-hc/AM/main"
Expand Down Expand Up @@ -1104,7 +1104,7 @@ case "$1" in
'list'|'-l'|\
'query'|'-q')
MODULE="database.am"
_use_module "$@"
if [ -t 1 ]; then _use_module "$@"; else _use_module "$@" | sed -e 's/\x1b\[[0-9;]*m//g'; fi
;;
'backup'|'-b'|\
'downgrade'|'--rollback'|\
Expand Down Expand Up @@ -1158,7 +1158,7 @@ case "$1" in
_use_clean
;;
'help'|'-h')
_use_help
if [ -t 1 ]; then _use_help; else _use_help | sed -e 's/\x1b\[[0-9;]*m//g'; fi
;;
'newrepo'|'neodb')
_use_newrepo "$@"
Expand Down

0 comments on commit 783af21

Please sign in to comment.