Skip to content

Commit

Permalink
Merge pull request #13 from dotenv-org/dotenv-me
Browse files Browse the repository at this point in the history
🐞 Respect dotenvMe flag
  • Loading branch information
motdotla authored Apr 20, 2022
2 parents 1b72dd5 + 61620b1 commit 0f7afe4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [Unreleased](https://github.com/dotenv-org/dotenv-vault/compare/v0.3.0...master)
## [Unreleased](https://github.com/dotenv-org/dotenv-vault/compare/v0.3.1...master)

## 0.3.1

### Changed

Respect `-- dotenvMe` flag. 🐞 ([#13](https://github.com/dotenv-org/dotenv-vault/pull/13))

## 0.3.0

Expand Down
2 changes: 1 addition & 1 deletion src/services/pull-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class PullService {
}

get meUid(): any {
return this.envMeConfig.DOTENV_ME
return this.dotenvMe || this.envMeConfig.DOTENV_ME
}

async run(): Promise<void> {
Expand Down
2 changes: 1 addition & 1 deletion src/services/push-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class PushService {
}

get meUid(): any {
return this.envMeConfig.DOTENV_ME
return this.dotenvMe || this.envMeConfig.DOTENV_ME
}

async run(): Promise<void> {
Expand Down

0 comments on commit 0f7afe4

Please sign in to comment.