fix syntax
This commit is contained in:
parent
43ae0453aa
commit
817eaec872
|
|
@ -229,6 +229,9 @@ check_failed_jobs() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Collect results
|
||||||
|
collect_results() {
|
||||||
local symbol=${1:-"*"}
|
local symbol=${1:-"*"}
|
||||||
local date=${2:-$(date +%Y-%m-%d)}
|
local date=${2:-$(date +%Y-%m-%d)}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
main() {
|
||||||
|
case "$1" in
|
||||||
|
"test")
|
||||||
|
echo "test works"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "unknown command"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
main "$@"
|
||||||
Loading…
Reference in New Issue