Skip to content
This repository was archived by the owner on May 12, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions platform/src/cli-scripts/open.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ export async function doOpen(): Promise<void> {
await runExecWithInput(
`cd ${destDir} && src-tauri/target/debug/${configData.appName}`,
);
} else if (osPlatform === 'linux') {
log(`\n${chalk.bold('Tauri Platform:')} Running linux app ⚡\n`);
await runExecWithInput(
`cd ${destDir} && src-tauri/target/debug/${configData.appName}`,
);
} else {
throw new Error(
'Sorry but your OS is not supported by the open/run command at this time.',
Expand Down