diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-04-10 04:57:32 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-04-10 04:57:32 +0300 |
commit | 610e82629543ff0b44f46a221227c2998087ef30 (patch) | |
tree | d79fb21fb155a15b98aaf12e9003d3d86fe2705a /bin/ak-profile | |
parent | f773608d73b975a878336f3fbc4e932516aec1e4 (diff) | |
download | arching-kaos-tools-610e82629543ff0b44f46a221227c2998087ef30.tar.gz arching-kaos-tools-610e82629543ff0b44f46a221227c2998087ef30.tar.bz2 arching-kaos-tools-610e82629543ff0b44f46a221227c2998087ef30.zip |
Applying optimization
Diffstat (limited to 'bin/ak-profile')
-rwxr-xr-x | bin/ak-profile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/bin/ak-profile b/bin/ak-profile index 4232b55..891dbac 100755 --- a/bin/ak-profile +++ b/bin/ak-profile @@ -43,12 +43,13 @@ PROGRAM=$(basename $0) descriptionString="Profile module" ZPROFILEDIR="$AK_WORKDIR/profile" -source $AK_LIBDIR/_ak_log -source $AK_LIBDIR/_ak_script -source $AK_LIBDIR/_ak_utils -source $AK_LIBDIR/_ak_ipfs -source $AK_LIBDIR/_ak_gpg -source $AK_LIBDIR/_ak_zblock +source $AK_LIBDIR/_ak_lib_load +_ak_lib_load _ak_log +_ak_lib_load _ak_script +_ak_lib_load _ak_utils +_ak_lib_load _ak_ipfs +_ak_lib_load _ak_gpg +_ak_lib_load _ak_zblock # Whatever the command is, we check if $ZPROFILEDIR is there. # If NOT we create it and we change dir there. |