Skip to content

Commit

Permalink
chore: fix and wip
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo authored and Julien Bouquillon committed Jan 13, 2023
1 parent fdd3da6 commit 95bca99
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/common/utils/need-helm.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const download = async (options) => {
switch (platform) {
case "darwin":
break
case "windows":
case "win32":
ext = ".exe"
break
case "linux":
Expand Down
2 changes: 1 addition & 1 deletion packages/common/utils/need-kapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const download = async (options) => {
switch (platform) {
case "darwin":
break
case "windows":
case "win32":
ext = ".exe"
break
case "linux":
Expand Down
2 changes: 1 addition & 1 deletion packages/common/utils/need-kubectl.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const download = async (options) => {
switch (platform) {
case "darwin":
break
case "windows":
case "win32":
ext = ".exe"
break
case "linux":
Expand Down
2 changes: 1 addition & 1 deletion packages/common/utils/need-rollout-status.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const download = async (options) => {
switch (platform) {
case "darwin":
break
case "windows":
case "win32":
ext = ".exe"
break
case "linux":
Expand Down
2 changes: 1 addition & 1 deletion packages/common/utils/need-stern.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const download = async (options) => {
switch (platform) {
case "darwin":
break
case "windows":
case "win32":
ext = ".exe"
break
case "linux":
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"allowSyntheticDefaultImports": true,
"declaration": false,
"noEmit": true,
"strict": true
"strict": false
},
"include": [
"plugins/contrib/patches/*.js",
Expand Down

0 comments on commit 95bca99

Please sign in to comment.