Skip to content

Commit ac9f052

Browse files
committed
Fixes linting errors
1 parent 049e424 commit ac9f052

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

backend/internal/certificate.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -814,10 +814,10 @@ const internalCertificate = {
814814
) +
815815
(le_staging ? ' --staging' : '');
816816

817-
// Prepend the path to the credentials file as an environment variable
818-
if (certificate.meta.dns_provider === 'route53') {
819-
main_cmd = 'AWS_CONFIG_FILE=\'' + credentials_loc + '\' ' + main_cmd
820-
}
817+
// Prepend the path to the credentials file as an environment variable
818+
if (certificate.meta.dns_provider === 'route53') {
819+
main_cmd = 'AWS_CONFIG_FILE=\'' + credentials_loc + '\' ' + main_cmd;
820+
}
821821

822822
const teardown_cmd = `rm '${credentials_loc}'`;
823823

@@ -934,7 +934,7 @@ const internalCertificate = {
934934

935935
// Prepend the path to the credentials file as an environment variable
936936
if (certificate.meta.dns_provider === 'route53') {
937-
main_cmd = 'AWS_CONFIG_FILE=\'' + credentials_loc + '\' ' + main_cmd
937+
main_cmd = 'AWS_CONFIG_FILE=\'' + credentials_loc + '\' ' + main_cmd;
938938
}
939939

940940
const teardown_cmd = `rm '${credentials_loc}'`;

0 commit comments

Comments
 (0)