reorganize kiss into its own directory

This commit is contained in:
2020-12-05 18:35:09 -07:00
parent cebe5c23a6
commit 7ff7bab555
38 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,8 @@
#! /bin/bash
# "python" is supposed to mean Python3 everywhere now, but not in practice
if [ ! -z "$(which python3)" ]; then
python3 bin/py/test.py
else
python bin/py/test.py
fi