Skip to content

Commit

Permalink
utils: Add missing semicolon
Browse files Browse the repository at this point in the history
Gets rid of the jshint error
  • Loading branch information
kiike committed Jul 10, 2024
1 parent 2b31cd3 commit e3c2d9e
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 e3c2d9e

Please sign in to comment.