Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Nov 16, 2024
1 parent ab9daa4 commit d738dc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rwf-cli/src/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::path::PathBuf;

use flate2::write::GzEncoder;
use flate2::Compression;
use rwf::config::ConfigFile;
use rwf::config::Config;
use tokio::process::Command;

use crate::logging::*;
Expand Down Expand Up @@ -59,7 +59,7 @@ pub async fn package(

if let Some(config) = config {
if config.is_file() {
if let Err(_) = ConfigFile::load(&config) {
if let Err(_) = Config::load(&config) {
warning(format!(
"{} doesn't seem to be be valid Rwf config file, but we'll use it anyway",
config.display()
Expand Down

0 comments on commit d738dc9

Please sign in to comment.