Skip to content
This repository was archived by the owner on Nov 9, 2023. It is now read-only.

Commit 6dbda53

Browse files
committed
fix(generator): check for tauri-bundler instead of tauri-cli, fixes #9
1 parent 91cdac7 commit 6dbda53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const fs = require('fs-extra')
44
const init = require('tauri/dist/api/init')
55

66
module.exports = async (api, options) => {
7-
await execa('cargo', ['tauri-cli', '--version']).catch(() => {
7+
await execa('cargo', ['tauri-bundler', '--version']).catch(() => {
88
// TODO: provide better error
99
error('Tauri CLI crate not installed')
1010
process.exit(1)

0 commit comments

Comments
 (0)