commit 0b867cb3d1c5535643ea6302dfd3ec982fbebc82 parent f49c6b295b4e659fe87d74a4692058f088c19287 Author: Dylan Araps <dylan.araps@gmail.com> Date: Thu, 13 Jun 2019 18:11:59 +0300 docs: update Diffstat:
M | README.md | | | 2 | ++ |
M | kiss | | | 16 | +++++++++------- |
2 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md @@ -2,6 +2,8 @@ Tiny package manager for KISS Linux. +**NOTE:** I am in the process of adding multi-repository support and the package manager is currently in a non-working state. + ## Package format See: <https://github.com/kissx/packages> diff --git a/kiss b/kiss @@ -196,13 +196,15 @@ args() { main() { trap 'rm -rf -- "$mak_dir" "$pkg_dir"' EXIT INT - mkdir -p "${src_dir:=$PWD/sources}" \ - "${mak_dir:=$PWD/build}" \ - "${pkg_db:=${pkg_dir:=$PWD/pkg}/var/db/$0}" \ - "${sys_db:=${sys_dir:=$KISS_ROOT}/var/db/$0}" \ - "${bin_dir:=$PWD/bin}" \ - "${rep_dir:=$PWD/repo}" || - die "Couldn't create directories at $PWD." + [ -z "$KISS_PATH" ] && die "Set \$KISS_PATH to a repository location." + + # mkdir -p "${src_dir:=$PWD/sources}" \ + # "${mak_dir:=$PWD/build}" \ + # "${pkg_db:=${pkg_dir:=$PWD/pkg}/var/db/$0}" \ + # "${sys_db:=${sys_dir:=$KISS_ROOT}/var/db/$0}" \ + # "${bin_dir:=$PWD/bin}" \ + # "${rep_dir:=$PWD/repo}" || + # die "Couldn't create directories at $PWD." args "$@" }