20 lines
554 B
Bash
Executable file
20 lines
554 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
mkdir -p build
|
|
echo "#!/usr/bin/env python3" > build/heimdall
|
|
cat \
|
|
source/packages.py \
|
|
source/lib.py \
|
|
source/check_kinds/_interface.py \
|
|
source/check_kinds/script.py \
|
|
source/check_kinds/file_timestamp.py \
|
|
source/check_kinds/http_request.py \
|
|
source/notification_channels/_interface.py \
|
|
source/notification_channels/console.py \
|
|
source/notification_channels/file_touch.py \
|
|
source/notification_channels/email.py \
|
|
source/notification_channels/libnotify.py \
|
|
source/main.py \
|
|
>> build/heimdall
|
|
chmod +x build/heimdall
|