Florian du Garage Num 6db283eb13 first commit
2023-12-15 16:14:36 +01:00

9 lines
136 B
Bash

#!/bin/sh
# check if config.toml or config.yaml exists
if [ -f "config.toml" ] || [ -f "config.yaml" ]; then
exit 0
else
exit 1
fi