Files
snippets/bin/buildx
2024-12-24 15:50:02 +01:00

18 lines
282 B
Bash
Executable File

#!/bin/bash
target=$(rustc --print target-list | fzf --cycle --header "Select build target:")
if [ -z "$target" ]; then
echo "No target selected. Canceled."
exit 1
fi
if [ -n "$1" ]; then
cmd="$1"
shift
else
cmd="build"
fi
cross "$cmd" --target "$target" $@