From 0e307ec9997b94a2a782746d2a28ab15a9ea2a87 Mon Sep 17 00:00:00 2001
From: davidovski <david@davidovski.xyz>
Date: Sun, 20 Feb 2022 17:56:55 +0000
Subject: added default target for updates

---
 src/install.sh | 4 ++++
 src/query.sh   | 2 +-
 xipkg.conf     | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/install.sh b/src/install.sh
index c73a202..da8b7a2 100644
--- a/src/install.sh
+++ b/src/install.sh
@@ -67,6 +67,10 @@ run_postinstall () {
 install () {
     local packages=$@
 
+    if [ "$#" = "0" ]; then
+        packages=$(ls ${INSTALLED_DIR})
+    fi
+
     local missing=""
     for package in $packages; do
         [ ! -f $package ] && missing="$missing $(basename $package)"
diff --git a/src/query.sh b/src/query.sh
index 0697005..d5571b0 100644
--- a/src/query.sh
+++ b/src/query.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 search () {
-    find ${PACKAGES_DIR} -type f | sed "s,${PACKAGES_DIR}/,," | grep$(echo $@ | sed "s/ /\\|/g")
+    find ${PACKAGES_DIR} -type f | sed "s,${PACKAGES_DIR}/,," | grep $(echo $@ | sed "s/ /\\|/g")
 }
 
 files () {
diff --git a/xipkg.conf b/xipkg.conf
index 728e3e5..549282a 100644
--- a/xipkg.conf
+++ b/xipkg.conf
@@ -8,8 +8,8 @@ include /etc/xipkg.d/default.conf
 # ensure that you have a bit of redunancy in case of back up
 sources {
     local           file:///var/lib/xib/export/repo/
-    davidovski      https://xi.davidovski.xyz/repo/
     ftp             https://xilinux.ftp.sh/repo/
+    davidovski      https://xi.davidovski.xyz/repo/
 }
 
 # The sources to download the keys from
-- 
cgit v1.2.1