forked from CastroFidel/winehelper
		
	fixed paths for determining the installation of system dependencies
This commit is contained in:
		| @@ -42,11 +42,15 @@ class DependencyManager: | ||||
|  | ||||
|     def _get_dependencies_path(self): | ||||
|         """Определяет и возвращает путь к скрипту dependencies.sh.""" | ||||
|         winehelper_script_path = os.environ.get("RUN_SCRIPT") | ||||
|         if winehelper_script_path and os.path.exists(winehelper_script_path): | ||||
|             return os.path.join(os.path.dirname(winehelper_script_path), 'dependencies.sh') | ||||
|         if Var.DATA_PATH: | ||||
|             base_path = Var.DATA_PATH | ||||
|         elif Var.RUN_SCRIPT and os.path.exists(Var.RUN_SCRIPT): | ||||
|             base_path = os.path.dirname(Var.RUN_SCRIPT) | ||||
|         else: | ||||
|             return None | ||||
|  | ||||
|         return os.path.join(base_path, 'dependencies.sh') | ||||
|  | ||||
|     def _calculate_file_hash(self): | ||||
|         """Вычисляет хэш SHA256 файла зависимостей.""" | ||||
|         if not self.dependencies_script_path or not os.path.exists(self.dependencies_script_path): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user