dotfiles/prompt/install.sh

8 lines
188 B
Bash
Executable file

#!/bin/sh
# builds and installs the prompt to ~/.local/bin
set -e
RUSTFLAGS="-C target-cpu=native" cargo build --release
strip target/release/prompt
cp target/release/prompt ~/.local/bin