Skip to content

Commit 49ae5d4

Browse files
committed
some more fixes
1 parent 8d45f5c commit 49ae5d4

File tree

3 files changed

+9
-85
lines changed

3 files changed

+9
-85
lines changed

src/gel-cli/README.md

Lines changed: 0 additions & 76 deletions
This file was deleted.
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "EdgeDB",
3-
"id": "edgedb-cli",
4-
"version": "1.0.2",
5-
"documentationURL": "https://github.com/joshuanianji/devcontainer-features/tree/main/src/edgedb-cli",
6-
"description": "EdgeDB CLI via the official installation script. Includes the VSCode extension and mounts the config and data folder.",
2+
"name": "Gel CLI",
3+
"id": "gel-cli",
4+
"version": "1.0.0",
5+
"documentationURL": "https://github.com/joshuanianji/devcontainer-features/tree/main/src/gel-cli",
6+
"description": "Gel CLI (previously EdgeDB) via the official installation script. Includes the VSCode extension and mounts the config and data folder.",
77
"options": {},
88
"customizations": {
99
"vscode": {
@@ -14,8 +14,8 @@
1414
},
1515
"mounts": [
1616
{
17-
"source": "${devcontainerId}-edgedb-cli",
18-
"target": "/dc/edgedb-cli",
17+
"source": "${devcontainerId}-gel-cli",
18+
"target": "/dc/gel-cli",
1919
"type": "volume"
2020
}
2121
],
@@ -24,6 +24,6 @@
2424
"ghcr.io/meaningful-ooo/devcontainer-features/fish"
2525
],
2626
"onCreateCommand": {
27-
"edgedb-cli-setup": "/usr/local/share/edgedb-cli/scripts/oncreate.sh"
27+
"gel-cli-setup": "/usr/local/share/gel-cli/scripts/oncreate.sh"
2828
}
2929
}

src/gel-cli/oncreate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ set -e
55
# if the user is not root, chown /dc/edgedb-cli to the user
66
if [ "$(id -u)" != "0" ]; then
77
echo "Running oncreate.sh for user $USER"
8-
sudo chown -R "$USER:$USER" /dc/edgedb-cli
8+
sudo chown -R "$USER:$USER" /dc/gel-cli
99
fi

0 commit comments

Comments
 (0)