We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4824d7 commit a69cf2fCopy full SHA for a69cf2f
1 file changed
packages/deploy-tooling/src/base/config.ts
@@ -58,7 +58,7 @@ function validateCredentials(credentials: NonNullable<AbapDeployConfig['credenti
58
const isEnvRef = (value: string | undefined): boolean => !value || value.startsWith('env:');
59
if (!isEnvRef(credentials.username) || !isEnvRef(credentials.password)) {
60
throw new Error(
61
- 'Credentials must be provided as environment variable references (e.g. env:MY_VAR), not as plain text.'
+ 'Credentials must be provided as environment variable references, such as env:MY_VAR, not as plain text.'
62
);
63
}
64
0 commit comments