Lines Matching +full:clean +full:- +full:command
3 # SPDX-License-Identifier: Apache-2.0
22 WEST_PATCH_SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "patch-schema.yml"
52 See "west patch apply --help" for details.
56 Run "west patch clean" to clean patches.
57 See "west patch clean --help" for details.
62 See "west patch list --help" for details.
66 The patches.yml syntax is described in "scripts/schemas/patch-schema.yml".
69 - path: zephyr/kernel-pipe-fix-not-k-no-wait-and-ge-min-xfer-bytes.patch
74 date: 2020-04-20
76 merge-pr: https://github.com/zephyrproject-rtos/zephyr/pull/24486
77 issue: https://github.com/zephyrproject-rtos/zephyr/issues/24485
78 merge-status: true
79 merge-commit: af926ae728c78affa89cbc1de811ab4211ed0f69
80 merge-date: 2020-04-27
81 apply-command: git apply
83 Songs about rainbows - why are there so many??
85 possible-muppets-to-ask-for-clarification-with-the-above-question:
86 - Miss Piggy
87 - Gonzo
88 - Fozzie Bear
89 - Animal
94 "-b",
95 "--patch-base",
102 "-l",
103 "--patch-yml",
110 "-w",
111 "--west-workspace",
137 "-r",
138 "--roll-back",
145 "clean",
146 help="Clean patches",
152 Run "west patch clean" to clean patches.
214 "clean": self.clean,
233 apply_cmd = patch_info["apply-command"]
288 self.clean(args, yml, patched_mods)
292 def clean(self, args, yml, mods=None): member in Patch
293 clean_cmd = yml["clean-command"]
294 checkout_cmd = yml["checkout-command"]
297 self.dbg("no clean or checkout commands specified")
330 self.err(f"failed to clean up {mod}: {e}")