Skip to content

Commit

Permalink
release: Version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xe5700 committed Oct 30, 2022
1 parent 8481292 commit e032006
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,11 @@ install-kvmd-pkgs() {
date > $INSTLOG

# uncompress platform package first
i="${KVMDCACHE}/${platform}-*.tar.xz"
echo "-> Extracting package $i into /" >> "$INSTLOG"
tar -vxf "$i"
for i in $( ls "${KVMDCACHE}/${platform}-*.tar.xz" )
do
echo "-> Extracting package $i into /" >> "$INSTLOG"
tar -vxf "$i"
done

# then uncompress, kvmd-{version}, kvmd-webterm, and janus packages
for i in $( ls "${KVMDCACHE}/*.tar.xz" | egrep 'kvmd-[0-9]' )
Expand Down

0 comments on commit e032006

Please sign in to comment.