Files
dataset-yolo-script/sam2-cpu/frigate-dev/.devcontainer/initialize.sh
2026-02-04 15:29:36 +07:00

14 lines
334 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
# These folders needs to be created and owned by the host user
mkdir -p debug web/dist
if [[ -f "config/config.yml" ]]; then
echo "config/config.yml already exists, skipping initialization" >&2
else
echo "initializing config/config.yml" >&2
cp -fv config/config.yml.example config/config.yml
fi