fix(cli): typo in update check notification (#4223)

This commit is contained in:
Fabian-Lars 2022-05-26 19:27:06 +02:00 committed by GitHub
parent ac7656ab19
commit 569fbd8b40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -296,7 +296,7 @@ fn check_for_updates() -> Result<()> {
let upstream = semver::Version::parse(&upstream_version)?;
if current < upstream {
println!(
"🚀 A new version of Tauri CLI is avaliable! [{}]",
"🚀 A new version of Tauri CLI is available! [{}]",
upstream.to_string()
);
};