mirror of
https://github.com/hohn/codeql-javascript-multiflow.git
synced 2025-12-16 20:03:04 +01:00
32 lines
492 B
Bash
Executable File
32 lines
492 B
Bash
Executable File
#!/bin/bash
|
|
|
|
usage="Take a snapshot of the current session.ql
|
|
|
|
Usage:
|
|
$0 TheSnapShotName
|
|
"
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo "$usage"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$1" = "-h" ]
|
|
then
|
|
echo "$usage"
|
|
exit 1
|
|
fi
|
|
|
|
qname=$1
|
|
# create the tests
|
|
mkdir tests/$qname
|
|
touch tests/$qname/$qname.expected
|
|
echo $qname.ql > tests/$qname/$qname.qlref
|
|
git add tests/$qname/$qname.*
|
|
|
|
# snapshot the session
|
|
cp session.ql solutions/$qname.ql
|
|
git add solutions/$qname.ql
|
|
|
|
# usage=snapshot-query ShowCmdFlowPath
|