You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2024/02/18 19:51:16 UTC

(celix) branch feature/devcontainer updated: Fix trailing commas in devcontainer.json

This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/devcontainer
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/feature/devcontainer by this push:
     new 74450e1f Fix trailing commas in devcontainer.json
74450e1f is described below

commit 74450e1f98ba795f8d0ebac2d48a3ede21171484
Author: Pepijn Noltes <pn...@apache.org>
AuthorDate: Sun Feb 18 20:51:03 2024 +0100

    Fix trailing commas in devcontainer.json
---
 .devcontainer/devcontainer.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index d1f7e633..b4f66731 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,7 +1,7 @@
 {
     "name": "Apache Celix Dev Container",
     "build": {
-        "dockerfile": "Dockerfile",
+        "dockerfile": "Dockerfile"
     },
-    "postCreateCommand": "sh .devcontainer/setup.sh",
+    "postCreateCommand": "sh .devcontainer/setup.sh"
 }