Skip to content

Commit

Permalink
fix: ci arch distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexD10S committed May 10, 2024
1 parent 47102f9 commit 491e765
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions crates/pop-cli/src/commands/install/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,6 @@ async fn install_arch(skip_confirm: bool) -> anyhow::Result<()> {
}
cmd("pacman", vec!["-Syu", "--needed", "--noconfirm", &Dependencies::Openssl.to_string()])
.run()?;
cmd("export", vec!["OPENSSL_LIB_DIR='/usr/lib/openssl-1.0'"]).run()?;
cmd("export", vec!["OPENSSL_INCLUDE_DIR='/usr/include/openssl-1.0'"]).run()?;
cmd(
"pacman",
vec![
Expand All @@ -153,12 +151,9 @@ async fn install_arch(skip_confirm: bool) -> anyhow::Result<()> {
],
)
.run()?;
cmd("export", vec!["OPENSSL_LIB_DIR='/usr/lib/openssl-1.0'"]).run()?;
cmd("export", vec!["OPENSSL_INCLUDE_DIR='/usr/include/openssl-1.0'"]).run()?;

Ok(())
}

async fn install_ubuntu(skip_confirm: bool) -> anyhow::Result<()> {
log::info("More information about the packages to be installed here: https://docs.substrate.io/install/linux/")?;
if !skip_confirm {
Expand Down

0 comments on commit 491e765

Please sign in to comment.