Skip to content

Commit

Permalink
Fix 'inject-env.ts' script following re-organization of code
Browse files Browse the repository at this point in the history
  • Loading branch information
smithki committed Sep 2, 2021
1 parent 94efcb4 commit a2325a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bin/inject-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const environment = {
};

async function main() {
const files = process.argv.slice(2).map((f) => path.resolve(__dirname, '..', f, 'dist/**/*'));
const files = process.argv.slice(2).map((f) => path.resolve(__dirname, '..', '..', f, 'dist/**/*'));

Object.keys(environment).forEach(async (envVar) => {
if (environment[envVar]) {
Expand Down

0 comments on commit a2325a2

Please sign in to comment.