mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-17 23:43:46 +01:00
7 lines
188 B
Bash
Executable file
7 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
|