diff --git a/src/components/menus/dashboard/shortcuts/helpers.ts b/src/components/menus/dashboard/shortcuts/helpers.ts index 8124a79..6578c58 100644 --- a/src/components/menus/dashboard/shortcuts/helpers.ts +++ b/src/components/menus/dashboard/shortcuts/helpers.ts @@ -20,7 +20,7 @@ export const getRecordingPath = (): string => options.menus.dashboard.recording. */ export const executeCommand = async (command: string): Promise => { try { - await execAsync(`/bin/bash -c '${command}'`); + await execAsync(`bash -c '${command}'`); } catch (err) { console.error('Command failed:', command); console.error('Error:', err);