diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-21 19:32:48 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-21 19:32:48 +0100 |
commit | 7026bc81aa89be2c6b998f39e258366b32c18cb0 (patch) | |
tree | a79c8774830009a8c676baf688df73b37d0bfffe /modules/archupdates | |
parent | 04c033a5e846918d80bee68c65935c319d809f9d (diff) |
Renamed functions inside modules to get_functionname
Diffstat (limited to 'modules/archupdates')
-rw-r--r-- | modules/archupdates | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/archupdates b/modules/archupdates index da9288a..edc7a41 100644 --- a/modules/archupdates +++ b/modules/archupdates @@ -5,7 +5,7 @@ PREFIX=' Updates:' -updates() +get_updates() { if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then updates_arch=0 @@ -20,4 +20,4 @@ updates() echo "$PREFIX $updates" } -updates +get_updates |