Skip to content

Commit

Permalink
wdawdawd
Browse files Browse the repository at this point in the history
  • Loading branch information
MordechaiHadad committed Aug 23, 2024
1 parent 1af216e commit 518960b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/install_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ pub async fn start(
if is_version_installed && version.version_type == VersionType::Nightly {
info!("Looking for nightly updates");

info("hello there");

Check failure on line 100 in src/handlers/install_handler.rs

View workflow job for this annotation

GitHub Actions / check (ubuntu-latest)

expected function, found macro `info`

Check failure on line 100 in src/handlers/install_handler.rs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

expected function, found macro `info`

Check failure on line 100 in src/handlers/install_handler.rs

View workflow job for this annotation

GitHub Actions / clippy (ubuntu-latest)

expected function, found macro `info`
let upstream_nightly = nightly_version.as_ref().unwrap();
let local_nightly = helpers::version::nightly::get_local_nightly(config).await?;
println!("Local: {:?}, {:?}", local_nightly, upstream_nightly);

if upstream_nightly.published_at == local_nightly.published_at {
return Ok(InstallResult::NightlyIsUpdated);
Expand Down

0 comments on commit 518960b

Please sign in to comment.