5 lines
123 B
Bash
Executable File
5 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
# runs repo QA before any push (gitea pre-push hook)
|
|
cd "$(dirname "$0")/../.." || exit 1
|
|
exec ./qa/site-qa.sh
|