Skip to content

Commit

Permalink
PR kubernetes-client#692 Fix missing semi-colon.
Browse files Browse the repository at this point in the history
  • Loading branch information
briceruzand committed Jul 13, 2021
1 parent a84a57e commit 578854c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class KubeConfig {
const namespaceFile = `${pathPrefix}${Config.SERVICEACCOUNT_NAMESPACE_PATH}`;
let namespace: string | undefined;
if (fileExists(namespaceFile)) {
namespace = fs.readFileSync(namespaceFile, 'utf8')
namespace = fs.readFileSync(namespaceFile, 'utf8');
}
this.contexts = [
{
Expand Down

0 comments on commit 578854c

Please sign in to comment.