15 lines
347 B
Bash
Executable File
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"
|