2026-08-02 19:04:30 -04:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
# Build and launch the QuickSearch GUI. On Unix the same binary doubles as the
|
|
|
|
|
# terminal search tool: ./target/release/quicksearch --help
|
|
|
|
|
# (On Windows that role belongs to quicksearch-cli.exe — see run.bat.)
|
|
|
|
|
set -e
|
2026-04-21 23:00:47 -04:00
|
|
|
cargo build --release -p quicksearch-gui
|
2026-08-02 19:04:30 -04:00
|
|
|
exec ./target/release/quicksearch "$@"
|