summary refs log tree commit diff
path: root/install-pkg
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2020-01-31 15:59:31 +0100
committerLeah Neukirchen <leah@vuxu.org>2020-01-31 15:59:31 +0100
commit8b4c9aad73a0ec3bcf2bc2c66a356fc829a487ec (patch)
tree3dcd6061810fe0298cc9913f5b93f0df142f1eab /install-pkg
parent289055301db8c7bf26eaf47228e0747c69623bfd (diff)
downloadmewix-8b4c9aad73a0ec3bcf2bc2c66a356fc829a487ec.tar.gz
mewix-8b4c9aad73a0ec3bcf2bc2c66a356fc829a487ec.tar.xz
mewix-8b4c9aad73a0ec3bcf2bc2c66a356fc829a487ec.zip
add package categories, defaulting to a/
Diffstat (limited to 'install-pkg')
-rwxr-xr-xinstall-pkg5
1 files changed, 1 insertions, 4 deletions
diff --git a/install-pkg b/install-pkg
index 2201c96..619d821 100755
--- a/install-pkg
+++ b/install-pkg
@@ -2,8 +2,5 @@
 set -e
 
 for pkg; do
-  name=${pkg##*/}
-  name=${name%.tar.xz}
-  mkdir -p newroot/pkg/$(echo "$name" | sed 's:@:/:g')
-  tar xf $pkg -C newroot/pkg/$(echo "$name" | sed 's:@:/:g')
+  tar xf $pkg -C newroot/pkg/
 done