We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd5a641 commit b9d040aCopy full SHA for b9d040a
.github/copilot/setup.sh
@@ -6,10 +6,19 @@ echo "Setting up Copilot development environment..."
6
# Install uv (version matching GitHub Actions)
7
echo "Installing uv..."
8
curl -LsSf https://astral.sh/uv/0.10.2/install.sh | sh
9
+
10
+# Source uv environment to make it available in the current shell
11
+if [ -f "$HOME/.local/bin/env" ]; then
12
+ . "$HOME/.local/bin/env"
13
+fi
14
export PATH="$HOME/.local/bin:$PATH"
15
16
# Verify uv installation
-uv --version
17
+echo "Verifying uv installation..."
18
+if ! uv --version; then
19
+ echo "ERROR: uv installation failed or uv is not in PATH"
20
+ exit 1
21
22
23
# Install Python and dependencies
24
echo "Installing dependencies..."
0 commit comments