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 52e036a commit bb6f338Copy full SHA for bb6f338
src/edgedb-cli/install.sh
@@ -49,10 +49,16 @@ create_symlink_dir() {
49
chown -R "$username:$username" "$source_dir"
50
}
51
52
+install_edgedb() {
53
+ echo "Installing EdgeDB CLI..."
54
+ curl https://sh.edgedb.com --proto '=https' -sSf1 | sh -s -- -y
55
+}
56
+
57
export DEBIAN_FRONTEND=noninteractive
58
59
create_cache_dir "/dc/edgedb-cli" "${USERNAME}"
60
create_symlink_dir "$_REMOTE_USER_HOME/.local/share/edgedb" "/dc/edgedb-cli" "${USERNAME}"
61
+install_edgedb
62
63
# Set Lifecycle scripts
64
if [ -f oncreate.sh ]; then
0 commit comments