Skip to content

Commit

Permalink
Lint Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KenCorma committed Oct 28, 2024
1 parent dc39f07 commit 7d0f441
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/pythonEnvironment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@ export class PythonEnvironment {
this.pythonTarPath = path.join(appResourcesPath, 'python.tgz');
this.wheelsPath = path.join(this.pythonRootPath, 'wheels');
this.requirementsCompiledPath = path.join(this.pythonRootPath, 'requirements.compiled');
this.macExtraFiles = ["lib/libpython3.12.dylib", "lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so","bin/uv","bin/uvx","bin/python3.12"];
this.macExtraFiles = [
'lib/libpython3.12.dylib',
'lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so',
'bin/uv',
'bin/uvx',
'bin/python3.12',
];
}

async isInstalled(): Promise<boolean> {
Expand Down
2 changes: 1 addition & 1 deletion todesktop.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"appPath": ".",
"appFiles": ["src/**", "scripts/**", "assets/**", "dist/**", ".vite/**", ".yarnrc.yml", ".yarn/**"],
"extraResources": [{ "from": "./assets" }],
"filesForDistribution": ["!assets/**","!dist/**" , "!.yarn/**", "!.yarnrc.yml"]
"filesForDistribution": ["!assets/**", "!dist/**", "!.yarn/**", "!.yarnrc.yml"]
}

0 comments on commit 7d0f441

Please sign in to comment.