updated installer, readme, repo url

This commit is contained in:
Daniel Fichtinger 2025-07-16 16:57:09 -04:00
parent 0a2130c801
commit 33379dea49
3 changed files with 37 additions and 20 deletions

View file

@ -1,7 +1,14 @@
#!/bin/sh
script="https://git.sr.ht/~ficd/pkgbuild-update-integrity/blob/main/update-integrity"
temp="$(mktemp -d)"
script="https://git.ficd.sh/ficd/pkgbuild-update-integrity/raw/branch/main/update-integrity.sh"
cd "$temp" || echo 'Error creating temp dir!' && exit 1
echo "Downloading script..."
curl "$script">update-integrity
echo "Installing..."
chmod +x update-update-integrity
sudo cp -f update-integrity /usr/bin/update-integrity
echo "Cleaning up..."
rm -r "$temp"
echo "Done!"