Skip to content

Commit

Permalink
fix(install): follow the latest tar archive format (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
hm2501 authored Aug 20, 2024
1 parent 21930d6 commit d1fe9fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,11 @@ main() {
exit 1
fi

mkdir "$DIR"

DLPATH=/tmp/"$FILENAME"
curl -fsSL https://pkg.gpud.dev/"$FILENAME" -o "$DLPATH"
tar xzf "$DLPATH" -C /tmp
tar xzf "$DLPATH" -C "$DIR"

$SUDO cp -f "$DIR"/gpud /usr/sbin

Expand Down

0 comments on commit d1fe9fb

Please sign in to comment.