Skip to content

Commit

Permalink
Merge pull request #757 from kiike/pr/fix_missing_semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
cavearr authored Jul 10, 2024
2 parents 2b31cd3 + e3c2d9e commit 13bd66d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/scripts/services/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ angular.module('icestudio')
//-- null: executable not found
function getExecutablePath(executable) {
// split executable at first space to account for e.g. `python.exe -3`
executable = executable.split(" ")[0]
return shelljs.which(executable)
executable = executable.split(" ")[0];
return shelljs.which(executable);
}


Expand Down

0 comments on commit 13bd66d

Please sign in to comment.