-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
makesure_stable should not be changed before the release #60
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Files | ||
|
||
- [makesure.awk](../makesure.awk) | ||
- **what:** the core of the tool implemented in AWK | ||
- [makesure_dev](../makesure_dev) | ||
- **what:** sh-wrapper over `makesure.awk`. Relatively immutable. | ||
- **why:** running tests | ||
- [makesure_candidate](../makesure_candidate) | ||
- **what:** self-contained sh scripts that embeds the `makesure.awk` content as AWK parameter | ||
- **why** the final tool requires some sh additions to correctly initialize the core. Serves a candidate for next release. | ||
- **how** is generated via `./makesure candidate` TODO link | ||
- [makesure](../makesure) | ||
- **what** contains a latest released version of a tool | ||
- **why** this one should be very stable and only change with a new release published | ||
- **how** copied from `makesure_candidate` at the time of release in `./makesure release` |