From 941f4d4245ebd01863d4ed8857f403823a609816 Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Wed, 22 Jun 2022 19:04:00 +0000 Subject: no-ci node16 for action --- .github/devcontainers-action/lib/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/devcontainers-action/lib/utils.js') diff --git a/.github/devcontainers-action/lib/utils.js b/.github/devcontainers-action/lib/utils.js index 44d7978..1d2e281 100644 --- a/.github/devcontainers-action/lib/utils.js +++ b/.github/devcontainers-action/lib/utils.js @@ -104,13 +104,13 @@ function getFeaturesAndPackage(basePath) { const featureFolder = path_1.default.join(basePath, file); const archiveName = `${file}.tgz`; tarDirectory(`${basePath}/${file}`, archiveName); - const featureJsonPath = path_1.default.join(featureFolder, "devcontainer-feature.json"); + const featureJsonPath = path_1.default.join(featureFolder, 'devcontainer-feature.json'); if (!fs.existsSync(featureJsonPath)) { core.error(`Feature ${file} is missing a devcontainer-feature.json`); core.setFailed('All features must have a devcontainer-feature.json'); return; } - const featureMetadata = JSON.parse(fs.readFileSync(featureJsonPath, "utf8")); + const featureMetadata = JSON.parse(fs.readFileSync(featureJsonPath, 'utf8')); metadatas.push(featureMetadata); } }); -- cgit v1.2.3