21 lines
290 B
Plaintext
21 lines
290 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
function detectorCheckCommit(){
|
||
|
sha=$1
|
||
|
history=$DET_DIR/detectorExecuted
|
||
|
[ -f $history ] || touch $history
|
||
|
|
||
|
if grep -q $sha $history
|
||
|
then
|
||
|
return 1
|
||
|
else
|
||
|
return 0
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
function detectorSaveCommit(){
|
||
|
sha=$1
|
||
|
history=$DET_DIR/detectorExecuted
|
||
|
echo $sha >> $history
|
||
|
}
|