mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
8 lines
193 B
Bash
8 lines
193 B
Bash
#!/bin/sh
|
|
# app-check.sh - Ensures /app/api/table_settings.json exists
|
|
|
|
if [ ! -f /app/api/table_settings.json ]; then
|
|
mkdir -p /app/api
|
|
echo -ne '{}' > /app/api/table_settings.json
|
|
fi
|