From 8c4bed5e4f5c73089a3a944d470d05e0eadea127 Mon Sep 17 00:00:00 2001 From: Ram Vasuthevan <36580682+RamVasuthevan@users.noreply.github.com> Date: Sun, 13 Aug 2023 20:32:28 -0400 Subject: [PATCH] Fix typo in devcontainer.json (#9364) Merge pull request 9364 --- .devcontainer/devcontainer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8aff32ed..e5a1a0aa 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,15 +12,15 @@ // Add the IDs of extensions you want installed when the container is created. "extensions": [ "rebornix.Ruby" - ] + ], // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "bundle install", + "postCreateCommand": "bundle install" // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root. // "remoteUser": "vscode" -} \ No newline at end of file +}