From e880ff6f8dee09159de68ba5344d4989805d6830 Mon Sep 17 00:00:00 2001 From: Milo <50248166+Milo123459@users.noreply.github.com> Date: Thu, 21 Sep 2023 08:14:32 +0000 Subject: [PATCH] remove confusing wording --- src/commands/run.rs | 4 ---- src/subscription.rs | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/commands/run.rs b/src/commands/run.rs index 7d5646965..6f7c6075d 100644 --- a/src/commands/run.rs +++ b/src/commands/run.rs @@ -156,10 +156,6 @@ pub async fn command(args: Args, _json: bool) -> Result<()> { .status() .await?; - if exit_status.success() { - println!("Looking good? Run `railway up` to deploy your changes!"); - } - if let Some(code) = exit_status.code() { // If there is an exit code (process not terminated by signal), exit with that code std::process::exit(code); diff --git a/src/subscription.rs b/src/subscription.rs index 3ade8a1ee..e4650d324 100644 --- a/src/subscription.rs +++ b/src/subscription.rs @@ -20,7 +20,7 @@ where { let configs = Configs::new()?; let Some(token) = configs.root_config.user.token.clone() else { - bail!("Unauthorized. Please login with `railway login`") + bail!("Unauthorized. Please login with `railway login`") }; let bearer = format!("Bearer {token}"); let hostname = configs.get_host();