Skip to content

Commit 578854c

Browse files
committed
PR #692 Fix missing semi-colon.
1 parent a84a57e commit 578854c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export class KubeConfig {
224224
const namespaceFile = `${pathPrefix}${Config.SERVICEACCOUNT_NAMESPACE_PATH}`;
225225
let namespace: string | undefined;
226226
if (fileExists(namespaceFile)) {
227-
namespace = fs.readFileSync(namespaceFile, 'utf8')
227+
namespace = fs.readFileSync(namespaceFile, 'utf8');
228228
}
229229
this.contexts = [
230230
{

0 commit comments

Comments
 (0)