Skip to content

Commit

Permalink
feat: add global-config-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sgimama committed Oct 27, 2024
1 parent a243763 commit d52d12b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/gdu/commands/global-configs/config-tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default async () => {
return acc;
}, {});

const json = JSON.stringify(FILTERED_TOKENS, null, 2);
const data = JSON.stringify(FILTERED_TOKENS, null, 2);

fs.writeFileSync(
path.join(
Expand All @@ -86,7 +86,7 @@ export default async () => {
? `${getFileName(env)}_${tenant}.json`
: `${getFileName(env)}.json`,
),
json,
data,
);
};

Expand Down

0 comments on commit d52d12b

Please sign in to comment.