Skip to content

Commit

Permalink
fix bug context
Browse files Browse the repository at this point in the history
  • Loading branch information
lefebsy committed Jul 22, 2024
1 parent 67fee14 commit 7e6f11a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .sonarcloud.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sonar.projectVersion=1.4.13
sonar.projectVersion=1.4.14
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to the "vskubi-lite" extension will be documented in this file.

## 1.4.13
- Fix bug


## 1.4.13
- Fix code bug : Yaml lib methode modified unoticed. Solved :-)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vskubi-lite",
"version": "1.4.13",
"version": "1.4.14",
"displayName": "Kubi-lite",
"description": "Kubernetes CA-GIP/Kubi CLI, Lite wrapper version compatible with VSCode and Theia IDE",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export function setKubeContext(kubiOutputChannel: vscode.OutputChannel, login: s
let cmd = `${kubectlPath} config use-context ${contextName}`;

// spawning child processus (kubi-cli itself)
child_process.execFile(kubectlPath, ['config','use-context'], (err, stdout) => {
child_process.execFile(kubectlPath, ['config','use-context', contextName], (err, stdout) => {
if (err) {
kubiOutputChannel.appendLine('');
kubiOutputChannel.appendLine(new Date().toLocaleString());
Expand Down

0 comments on commit 7e6f11a

Please sign in to comment.