summary refs log tree commit diff
path: root/install-pkg
diff options
context:
space:
mode:
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