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 dabddca commit e8e08d3Copy full SHA for e8e08d3
destination-surrealdb/.devcontainer/devcontainer.json
@@ -31,7 +31,7 @@
31
32
"features": {
33
"./surrealdb": {
34
- "version": "2.2.2"
+ "version": "${localEnv:SURREALDB_VERSION:2.2.2}"
35
}
36
},
37
destination-surrealdb/.devcontainer/surrealdb/install.sh
@@ -39,6 +39,12 @@ elif [ "$VERSION" = "beta" ]; then
39
export BETA="true"
40
elif [ "$VERSION" = "nightly" ]; then
41
export NIGHTLY="true"
42
+elif [ "$VERSION" = "latest" ]; then
43
+ # For latest, don't set VERSION - let the script use the default
44
+ unset VERSION
45
+else
46
+ # For specific versions, remove the "v" prefix if present
47
+ export VERSION="${VERSION#v}"
48
fi
49
50
curl -sSf https://install.surrealdb.com | sh
0 commit comments