some consistency stuff with comments and also remove timeout from serial reads

This commit is contained in:
ryleu
2026-04-11 14:45:12 -05:00
parent 6eb4f0041b
commit 44e457bf76
4 changed files with 164 additions and 147 deletions

View File

@@ -12,7 +12,7 @@ cd $repo_root
echo "this will nuke all of your current un-commited git changes, including any changes to submodules and any gitignored files. is this okay? (y/N)"
read okay
if [[ ! $okay == "y" ]]; then
if [[ $okay != "y" ]]; then
echo "you didn't say exactly 'y'. aborting." >&2
exit 2
fi