Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
return current folder when ini
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Jul 19, 2022
1 parent 13420b0 commit 5cf5559
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,10 @@ function getFolder(client) {
}catch(e){
}
}
return os.homedir()
if (process.cwd()) {
return process.cwd()
} else
return os.homedir()
}

let remixdStart = () => {
Expand Down

0 comments on commit 5cf5559

Please sign in to comment.