diff --git a/src/config.ts b/src/config.ts index e1194833..43140a58 100644 --- a/src/config.ts +++ b/src/config.ts @@ -259,7 +259,7 @@ export class Config implements IConfig { scopedEnvVarKey(k: string) { return [this.bin, k] - .map(p => p.replace(/-/g, '_')) + .map(p => p.replace(/@/g, '').replace(/[-\/]/g, '_')) .join('_') .toUpperCase() }