DopplerHQ / cli

The official CLI for interacting with your Doppler secrets and configuration.
https://docs.doppler.com
Apache License 2.0
218 stars 44 forks source link

Remove duplicate log statement when fetching invalid project #267

Closed Piccirello closed 2 years ago

Piccirello commented 2 years ago

Before:

$ doppler run --project=fake -- ls
Unable to fetch secrets from the Doppler API
Doppler Error: Could not find requested project 'fake'
Reading secrets from fallback file
Reading secrets from fallback file
Doppler Error: The fallback file does not exist

After:

$ doppler run --project=fake -- ls
Unable to fetch secrets from the Doppler API
Doppler Error: Could not find requested project 'fake'
Reading secrets from fallback file
Doppler Error: The fallback file does not exist

Closes ENG-3382.