We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1737a20 commit ec38ad2Copy full SHA for ec38ad2
.devcontainer/scripts/specific-version
@@ -5,4 +5,8 @@ set -e
5
cd "$(dirname "$0")/../.."
6
7
read -p 'Set Home Assistant version: ' -r version
8
-uv pip install --system --prefix "/home/vscode/.local/" --upgrade homeassistant=="$version"
+if [ ! -z "$version" ]; then
9
+ uv pip install --system --prefix "/home/vscode/.local/" --upgrade homeassistant=="$version"
10
+else
11
+ echo "No version specified, aborting."
12
+fi
0 commit comments