Add session snapshot scripts

This commit is contained in:
Michael Hohn
2023-11-26 13:13:41 -08:00
committed by =Michael Hohn
parent 8ac0490289
commit 5b294a18c8
2 changed files with 46 additions and 0 deletions

15
cruft/snapshot-setup Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
usage="Set up the test / solution directories and a blank session
Usage:
$0
"
if [ $# -ne 0 ]
then
echo "$usage"
exit 1
fi
mkdir -p tests
mkdir -p solutions
echo 'import javascript' > session.ql