diff options
| author | soryu <soryu@soryu.co> | 2026-02-16 01:24:19 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-02-16 01:31:31 +0000 |
| commit | 0676468e3e69ff36f1e509d775f191dd41f6080b (patch) | |
| tree | 624fb2e69827299ae9e571240e53d226124f55dc /makima/src/bin/makima.rs | |
| parent | a9da99085bc0b1f94e13cb27639915fd1398ccbe (diff) | |
| download | soryu-0676468e3e69ff36f1e509d775f191dd41f6080b.tar.gz soryu-0676468e3e69ff36f1e509d775f191dd41f6080b.zip | |
Ensure directives replan on goal change
Diffstat (limited to 'makima/src/bin/makima.rs')
| -rw-r--r-- | makima/src/bin/makima.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makima/src/bin/makima.rs b/makima/src/bin/makima.rs index c2c9beb..406f6e1 100644 --- a/makima/src/bin/makima.rs +++ b/makima/src/bin/makima.rs @@ -821,7 +821,7 @@ async fn run_directive( DirectiveCommand::Update(args) => { let client = ApiClient::new(args.common.api_url, args.common.api_key)?; let result = client - .directive_update(args.common.directive_id, args.pr_url, args.pr_branch) + .directive_update(args.common.directive_id, args.pr_url, args.pr_branch, args.status) .await?; println!("{}", serde_json::to_string(&result.0)?); } |
