mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +02:00
20 lines
453 B
Bash
20 lines
453 B
Bash
#!/bin/bash
|
|
#
|
|
# Script to update tools
|
|
#
|
|
cd "$(dirname "$0")"
|
|
|
|
toolAppImage="appimagetool-x86_64"
|
|
|
|
echo "1. Cleanup"
|
|
rm -rf "$toolAppImage" 2>/dev/null
|
|
|
|
echo "2. Get AppImage toolkit"
|
|
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/$toolAppImage.AppImage"
|
|
chmod a+x "$toolAppImage.AppImage"
|
|
|
|
"./$toolAppImage.AppImage" --appimage-extract
|
|
rm -f "$toolAppImage.AppImage"
|
|
mv -f "squashfs-root" "$toolAppImage"
|
|
|
|
echo "3. Complete" |