Improve install script output

This commit is contained in:
Sander Declerck 2025-12-01 15:28:10 +01:00
parent b6ea61170f
commit 34c62c5268
No known key found for this signature in database
2 changed files with 2 additions and 14 deletions

View file

@ -100,15 +100,10 @@ main() {
info "Binary installed to: $FINAL_FILE"
# Execute safe-chain setup
info "Running safe-chain setup..."
if "$FINAL_FILE" setup; then
info "✓ safe-chain installed and configured successfully!"
else
if ! "$FINAL_FILE" setup; then
warn "safe-chain was installed but setup encountered issues."
warn "You can run 'safe-chain setup' manually later."
fi
info "Installation complete!"
}
main