Skip to content

Commit

Permalink
fix wrongly placed export
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed May 6, 2024
1 parent d553953 commit 1fa882a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions APP-MANAGER
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ function _no_sudo() {
_no_sudo


# Export functions to use them also in modules
export -f web_get _make_upper _make_lower

function web_get() {
wget -q "${@}"
}
Expand All @@ -49,7 +46,9 @@ function _make_upper() {
function _make_lower() {
tr '[:upper:]' '[:lower:]'
}
#
# Export functions to use them also in modules
export -f web_get _make_upper _make_lower


# Determine sytem package manager
function _system_package_manager_check() {
Expand Down

0 comments on commit 1fa882a

Please sign in to comment.