Skip to content

Commit

Permalink
fix: allocs failure due to repo download
Browse files Browse the repository at this point in the history
  • Loading branch information
merklefruit committed Oct 19, 2023
1 parent a8c26ac commit 6a886bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/primitives/src/monorepo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct MonorepoConfig {
impl Default for MonorepoConfig {
fn default() -> Self {
Self {
source: MonorepoSource::Tarball,
source: MonorepoSource::Git,
directory_name: "optimism".to_string(),
git_url: "[email protected]:ethereum-optimism/optimism.git".to_string(),
tarball_url: "https://github.com/ethereum-optimism/optimism/archive/develop.tar.gz"
Expand All @@ -49,9 +49,9 @@ impl Default for MonorepoConfig {
#[serde(rename_all = "lowercase")]
pub enum MonorepoSource {
/// Clone from git.
#[default]
Git,
/// Download from a tarball archive.
#[default]
Tarball,
}

Expand Down

0 comments on commit 6a886bb

Please sign in to comment.