Skip to content

Commit

Permalink
Fix eslint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jan 4, 2024
1 parent fc6bb84 commit 1a6d7bb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions universal-python.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ function run(command, args) {
subprocess.on('exit', function(code) {
// Microsoft Store install shim exits with code 9009
if (process.platform === 'win32' && code === 9009) {
// eslint-disable-next-line max-len
console.log('universal-python: Attempted to start python, but got the Microsoft Store installation shim. Install python from the Microsoft Store or python.org. (code 9009)')

Check failure on line 27 in universal-python.js

View workflow job for this annotation

GitHub Actions / build

Missing semicolon
} else if (code === 0) {
console.log('universal-python: Success');
Expand Down

0 comments on commit 1a6d7bb

Please sign in to comment.