diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-02-13 12:06:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 12:06:22 +0100 |
commit | 00196d2ba6b76c473a72493f2de2deff9f781421 (patch) | |
tree | d1f370f603d81ca9d72423061be927f384ab3416 /src-tauri/src/github/pull_requests.rs | |
parent | 83054cac91837e1bcfb98b01f818f73df6ee7d24 (diff) | |
download | FlightCore-00196d2ba6b76c473a72493f2de2deff9f781421.tar.gz FlightCore-00196d2ba6b76c473a72493f2de2deff9f781421.zip |
fix: Remove most leftover dbg prints (#803)
Removes all but one leftover `dbg!()` prints.
The remaining one is in a function that is yet to be implemented.
Diffstat (limited to 'src-tauri/src/github/pull_requests.rs')
-rw-r--r-- | src-tauri/src/github/pull_requests.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src-tauri/src/github/pull_requests.rs b/src-tauri/src/github/pull_requests.rs index 91d8a5da..9c7e82f5 100644 --- a/src-tauri/src/github/pull_requests.rs +++ b/src-tauri/src/github/pull_requests.rs @@ -190,8 +190,6 @@ pub async fn get_launcher_download_link(commit_sha: String) -> Result<String, St for artifact in artifacts_response.artifacts { // Make sure artifact and CI run commit head sha match if artifact.workflow_run.head_sha == workflow_run.head_sha { - dbg!(artifact.id); - // Download artifact return Ok(format!("https://nightly.link/R2Northstar/NorthstarLauncher/actions/artifacts/{}.zip", artifact.id)); } |