We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c624f commit cc07470Copy full SHA for cc07470
src/utils/macOSUtils.mts
@@ -72,7 +72,8 @@ export default class MacOSPythonPkgExtractor {
72
try {
73
execSync(command);
74
} catch (error) {
75
- const message = error instanceof Error ? error.message : (error as string);
+ const message =
76
+ error instanceof Error ? error.message : (error as string);
77
this._logger.error(
78
`Error executing command: ${command} Error: ${message}`
79
);
0 commit comments