Skip to content

Commit

Permalink
Remove logger
Browse files Browse the repository at this point in the history
  • Loading branch information
matias-gonz committed Oct 8, 2024
1 parent f52cd45 commit eb630a8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::str::FromStr;

use common::{cmd::Cmd, logger, spinner::Spinner};
use common::{cmd::Cmd, spinner::Spinner};
use serde::Deserialize;
use xshell::{cmd, Shell};

Expand Down Expand Up @@ -85,7 +85,6 @@ fn get_releases(shell: &Shell, repo: &str, arch: Arch) -> anyhow::Result<Vec<Ver
);

if let Ok(token) = shell.var("GITHUB_TOKEN") {
logger::info("Using GitHub token for authentication");
cmd = cmd.args(vec![
"-H".to_string(),
format!("Authorization: Bearer {}", token),
Expand Down

0 comments on commit eb630a8

Please sign in to comment.