Detect if running in Flatpak; patch pythonPath and pgadminFile accordingly.

This commit is contained in:
Kolja 2024-06-04 12:06:08 +02:00 committed by GitHub
parent 29a526626f
commit d98ee76b8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 2 deletions

View File

@ -26,6 +26,10 @@ const createDir = (dirName) => {
}
};
export const insideFlatpak = () => {
return platform() === 'linux' && fs.existsSync('/.flatpak-info');
}
// This function is used to get the python executable path
// based on the platform. Use this for deployment.
const getPythonPath = () => {
@ -37,8 +41,11 @@ const getPythonPath = () => {
case 'darwin':
pythonPath = '../../Frameworks/Python.framework/Versions/Current/bin/python3';
break;
case 'linux':
pythonPath = '../venv/bin/python3';
case 'linux':
pythonPath = '../venv/bin/python3';
if (insideFlatpak()) {
pythonPath = '/usr/bin/python';
}
break;
default:
if (platform().startsWith('win')) {

View File

@ -29,6 +29,10 @@ let pythonPath = misc.getPythonPath();
let pgadminFile = '../web/pgAdmin4.py';
let configFile = '../web/config.py';
if (insideFlatpak()) {
pgadminFile = '/app/pgAdmin4/web/pgAdmin4.py';
}
// Override the paths above, if a developer needs to
if (fs.existsSync('dev_config.json')) {
try {