From 167d44614473a5acd4ec8293d1f1453f976b61b1 Mon Sep 17 00:00:00 2001 From: Joakim Repomaa Date: Sat, 7 Mar 2026 12:35:56 +0200 Subject: [PATCH] don't build apu on target --- .zed/tasks.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.zed/tasks.json b/.zed/tasks.json index 651ab50..afeafde 100644 --- a/.zed/tasks.json +++ b/.zed/tasks.json @@ -6,7 +6,7 @@ "allow_concurrent_runs": true, "reveal": "no_focus", "reveal_target": "dock", - "hide": "on_success" + "hide": "on_success", }, { "label": "Apply remote", @@ -16,26 +16,26 @@ "allow_concurrent_runs": true, "reveal": "no_focus", "reveal_target": "dock", - "hide": "on_success" + "hide": "on_success", }, { "label": "Apply on freun-dev", "command": "apply", - "args": ["--build-on-target", "--on", "freun-dev"], + "args": ["--on", "freun-dev"], "use_new_terminal": false, "allow_concurrent_runs": true, "reveal": "no_focus", "reveal_target": "dock", - "hide": "on_success" + "hide": "on_success", }, { "label": "Apply on apu", "command": "apply", - "args": ["--build-on-target", "--on", "apu"], + "args": ["--on", "apu"], "use_new_terminal": false, "allow_concurrent_runs": true, "reveal": "no_focus", "reveal_target": "dock", - "hide": "on_success" - } + "hide": "on_success", + }, ]