baa38340a6
Single command to update version across all 12+ files: scripts/bump-version.sh 5.7.0 Updates: clientversion.h, version.h, triangles-qt.pro, Dockerfile, and all packaging manifests (Docker, AUR, Chocolatey, Debian, RPM, WinGet, Homebrew, Nix, AppImage).
19 lines
856 B
Bash
Executable File
19 lines
856 B
Bash
Executable File
#!/bin/bash
|
|
# Post-installation script for Triangles .deb package
|
|
|
|
set -e
|
|
|
|
echo "════════════════════════════════════════════════════════"
|
|
echo " Triangles Installation Complete"
|
|
echo "════════════════════════════════════════════════════════"
|
|
echo ""
|
|
echo "Optional: Download blockchain bootstrap to skip days of sync"
|
|
echo ""
|
|
echo " sudo triangles-bootstrap-install"
|
|
echo ""
|
|
echo "This will download ~1.3GB and extract to ~/.triangles/"
|
|
echo "════════════════════════════════════════════════════════"
|
|
echo ""
|
|
|
|
exit 0
|