diff --git a/src/package.sh b/src/package.sh index 6f6151c..7afc040 100644 --- a/src/package.sh +++ b/src/package.sh @@ -17,14 +17,12 @@ package_manager() { if [ "$command" = 'get_manually_installed' ]; then output=$(eval $manager $args__get_manually_installed) - log debug "package.package_manager returning: $output" printf "$output" fi } get_system_packages() { local packages=$(package_manager get_manually_installed) - log debug "package.get_system_packages returning: $packages" printf "$packages" } diff --git a/src/tori b/src/tori index c9b2342..e95074e 100755 --- a/src/tori +++ b/src/tori @@ -6,7 +6,7 @@ CONFIG_ROOT="$HOME/.config/tori" TMP_DIR="/tmp/tori" . "$TORI_ROOT/src/package.sh" -. "$TORI_ROOT/src/utilities.sh" +. "$TORI_ROOT/src/utility.sh" . "$TORI_ROOT/src/configuration.sh" # state diff --git a/src/utilities.sh b/src/utility.sh similarity index 100% rename from src/utilities.sh rename to src/utility.sh