Skip to content

Commit

Permalink
Merge pull request ivan-hc#949 from ivan-hc/dev
Browse files Browse the repository at this point in the history
Add "less" among core dependences
  • Loading branch information
ivan-hc authored Sep 16, 2024
2 parents 07a45a5 + d12007e commit 30f389e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions APP-MANAGER
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

AMVERSION="8.2-1"
AMVERSION="8.2-2"

# Determine main repository and branch
AMREPO="https://raw.githubusercontent.com/ivan-hc/AM/main"
Expand Down Expand Up @@ -190,7 +190,7 @@ APPSLISTDB="$AMREPO/programs/$arch-apps"
function _am_dependences_check() {
# Check for essential commands required by the application
missing_deps=()
AMDEPENDENCES="cat chmod chown curl grep sed wget"
AMDEPENDENCES="cat chmod chown curl grep less sed wget"
for name in $AMDEPENDENCES; do
if ! command -v "$name" &>/dev/null; then
missing_deps+=("$name")
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ Below are the **essential system dependencies** that you must install before pro
- "`coreutils`" (contains "`cat`", "`chmod`", "`chown`"...);
- "`curl`", to check URLs;
- "`grep`", to check files;
- "`less`", to read the ever-longer lists;
- "`sed`", to edit/adapt installed files;
- "`wget`" to download all programs and update "AM"/"AppMan" itself.

Expand Down

0 comments on commit 30f389e

Please sign in to comment.