Revert "Merge pull request #5 from Percslol/main"

This reverts commit 2067592b7b, reversing
changes made to 82249fe707.
This commit is contained in:
ading2210 2024-12-26 00:12:57 -05:00
parent ca8a886757
commit 7648eecd7a
6 changed files with 12 additions and 27 deletions

View file

@ -1,20 +0,0 @@
#!/bin/bash
#download and extract wisp-js
set -e
VERSION="0.3.3"
PREFIX=$(realpath build/wisp-js)
TARBALL_PATH="$(realpath build/wisp-archive.tar.gz)"
TARBALL_URL=$(npm view @mercuryworkshop/wisp-js@$VERSION dist.tarball)
if [ -d "$PREFIX" ]; then
exit
fi
rm -rf $PREFIX
mkdir -p $PREFIX
wget $TARBALL_URL -O $TARBALL_PATH
tar xf $TARBALL_PATH -C $PREFIX
rm $TARBALL_PATH