Skip to content

Commit

Permalink
merge the containerEnv objects
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Jul 23, 2024
1 parent 427ba84 commit 82275b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/devcontainer-json/action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const json = JSON.parse(readFileSync('image/.devcontainer/devcontainer.json'));
json.build.args.BASE = '${os}';
json.build.args.RAPIDS_VERSION = '${VERSION}';
json.containerEnv = ${container_env} || undefined;
json.containerEnv = Object.assign(json.containerEnv || {}, ${container_env} || {});
const dups = {};
Expand Down

0 comments on commit 82275b6

Please sign in to comment.