9 lines
149 B
Bash
Executable File
9 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -E -o errexit -o nounset -o pipefail
|
|
set -x
|
|
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
source "$HOME/.cargo/env"
|
|
uv --version
|