Files
2026-03-22 02:25:16 +01:00

15 lines
347 B
Bash
Executable File

#!/bin/bash
set -e
echo "Building Hush with AOT compilation..."
dotnet publish Hush.slnx -c Release -r linux-x64 -p:PublishAot=true
echo ""
echo "Build complete!"
echo "Binary location:"
echo " - Hush.Cli: Hush.Cli/bin/Release/net10.0/linux-x64/publish/Hush.Cli"
echo ""
echo "The daemon is not a separate binary. Start it with: hush daemon"