mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-15 22:43:02 +01:00
8 lines
188 B
Bash
8 lines
188 B
Bash
|
#!/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
|