Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Add missing semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
SteelPhase committed Mar 26, 2019
1 parent 7f3d765 commit d4dfe6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/goPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export function parseEnvFiles(paths: string[]): { [key: string]: string }[] {
const path = paths[i];
let env = parseEnvFile(path);

envs.push(env)
envs.push(env);
}

return envs;
Expand Down

0 comments on commit d4dfe6f

Please sign in to comment.