https://docs.google.com/presentation/d/1GP0P9T3yQyx9BzcAqle-fWHRoEfeqNbumtgfvgReFq0/edit?usp=sharing
This file contains hidden or 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
| https://docs.google.com/presentation/d/1D9HBReO9Ir7Ld1WzTY0zylM8fzGNrtCNsk_qcwyO3vA/edit?slide=id.g36250774062_0_1#slide=id.g36250774062_0_1 |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| """ | |
| A script to sort justfile entries alphabetically and move private recipes to the end. | |
| Current limitations: fails if there is more than one recipe with an identical name (e.g. for multiple architectures) | |
| """ | |
| import re | |
| import sys |
NewerOlder