Skip to content

Commit

Permalink
fix an error message
Browse files Browse the repository at this point in the history
Beta release !
  • Loading branch information
jbtrystram committed Mar 15, 2021
1 parent 358532b commit 4dd8be8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.1.0"
version = "0.1-beta1"
authors = ["Jean-Baptiste Trystram <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn main() -> Result<()> {
_default_app = None;
} else {
let conf = config::load_config_file(matches.value_of(Parameters::config))
.context("No URL arg provided, DRGCTL config file not found.")?;
.context("No URL arg provided and DRGCTL config file was not found.")?;
url = util::url_validation(Some(conf.drogue_cloud_url.as_str()))?;
_default_app = conf.default_app;
}
Expand Down
2 changes: 1 addition & 1 deletion src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::{
use tempfile::NamedTempFile;
use std::process::exit;

pub const VERSION: &str = "0.1";
pub const VERSION: &str = "0.1-beta1";
pub const COMPATIBLE_DROGUE_VERSION: &str = "0.3.0";

pub fn print_result(r: Response, resource_name: String, op: Verbs) {
Expand Down

0 comments on commit 4dd8be8

Please sign in to comment.