Skip to content

Commit

Permalink
Fix revision download
Browse files Browse the repository at this point in the history
  • Loading branch information
vlinkz committed Mar 3, 2024
1 parent 0f41520 commit 20ea3f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::fs;
use std::io::Write;

use anyhow::Result;
use anyhow::{Context, Result};
use aws_config::meta::region::RegionProviderChain;
use aws_config::BehaviorVersion;
use clap::{Parser, Subcommand};
Expand Down Expand Up @@ -97,7 +97,7 @@ async fn main() -> Result<()> {
i + 1,
revision.len()
);
let storeset = get_store(r).await;
let storeset = get_store(r.split('.').last().context("Failed to get revision")?).await;

// Read processed
let prevpaths =
Expand Down

0 comments on commit 20ea3f4

Please sign in to comment.