Skip to content

Commit

Permalink
wtf
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Nov 25, 2024
1 parent 98c3f25 commit c3e9aa6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/shell-init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ const copyMambaBatToMicromambaBat = (options: Options) => {
const existsMamba = existsSync(mambaBat)
const existsMicromamba = existsSync(micromambaBat)
core.info(`mamba.bat found: ${existsMamba} - micromamba.bat found: ${existsMicromamba}`)
if (existsSync(mambaBat) && !existsSync(micromambaBat)) {
/*if (existsSync(mambaBat) && !existsSync(micromambaBat)) {

Check failure on line 46 in src/shell-init.ts

View workflow job for this annotation

GitHub Actions / build

Expected exception block, space or tab after '/*' in comment

Check failure on line 46 in src/shell-init.ts

View workflow job for this annotation

GitHub Actions / build

Expected space or tab before '*/' in comment
core.info(`calling the copy`)
return fs.copyFile(mambaBat, micromambaBat)
} else {
core.info(`return fulfilled promised`)
core.info(`return fulfilled promised`)*/
return Promise.resolve(undefined)

Check failure on line 51 in src/shell-init.ts

View workflow job for this annotation

GitHub Actions / build

Delete `··`
}
//}

Check failure on line 52 in src/shell-init.ts

View workflow job for this annotation

GitHub Actions / build

Expected space or tab after '//' in comment
}

export const shellInit = (options: Options, shell: string) => {
Expand Down

0 comments on commit c3e9aa6

Please sign in to comment.