mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 19:43:06 +00:00
10 lines
225 B
Text
10 lines
225 B
Text
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
export NAVI_HOME="$(cd "$(dirname "$0")/.." && pwd)"
|
||
|
|
||
|
cd "$NAVI_HOME"
|
||
|
rm -rf "target/release/navi" 2> /dev/null || true
|
||
|
rm -rf "target/debug/navi" 2> /dev/null || true
|
||
|
cargo run -- "$@"
|