-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fix broken rollback in xtask pipeline. (#132)
* fix: Fix broken rollback in xtask pipeline. The prior implementation of step pipelining in xtask actually didn't implement rollback correctly, and would "undo" steps it hadn't done yet. This new implementation is correct. Signed-off-by: Andrew Lilley Brinker <[email protected]> * fix: Replace while loop with for loop for Clippy Clippy flagged the prior version of the loop, and this change satisfies Clippy. Signed-off-by: Andrew Lilley Brinker <[email protected]> --------- Signed-off-by: Andrew Lilley Brinker <[email protected]>
- Loading branch information
1 parent
d35334c
commit ec3aa1c
Showing
5 changed files
with
99 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ clap = "4.5.1" | |
duct = "0.13.7" | ||
env_logger = "0.11.2" | ||
log = "0.4.20" | ||
which = "6.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters