Skip to content

Commit

Permalink
fix: bump aqua version
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsartem committed Oct 6, 2022
1 parent 3698b8d commit da287e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/aquaCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export type AquaCliInput =
| {
command: "remote deploy_service";
flags: Flags<"addr" | "sk" | "service" | "config-path"> &
OptionalFlags<"on" | "timeout">;
OptionalFlags<"on" | "timeout" | "log-level" | "verbose" | "print-air">;
}
| {
command: "remote create_service";
Expand Down
2 changes: 1 addition & 1 deletion src/lib/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import { Command, Flags } from "@oclif/core";

export const AQUA_RECOMMENDED_VERSION = "0.7.6-346";
export const AQUA_RECOMMENDED_VERSION = "0.7.6-347";
export const MARINE_RECOMMENDED_VERSION = "0.12.4";
export const MREPL_RECOMMENDED_VERSION = "0.18.6";
export const MARINE_RS_SDK_TEMPLATE_VERSION = "0.6.15";
Expand Down
6 changes: 5 additions & 1 deletion src/lib/execPromise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ export const execPromise = (

rej(
new Error(
`Command execution failed:\n\n${stderr}\n\n${failedCommandText}\n`
`Command execution failed:\n\n${color.yellow(
"stdout:"
)}\n\n${stdout}\n\n${color.yellow(
"stderr:"
)}\n\n${stderr}\n\n${failedCommandText}\n`
)
);

Expand Down

0 comments on commit da287e2

Please sign in to comment.