Files
Kristoffer 4dc8fbdce6 add actions
2023-08-01 14:42:30 +00:00

4 lines
288 B
Bash
Executable File

#!/bin/sh
# check if directory /extensions is mounted and copy extension into that dir
[ -d /extensions ] && (echo "Found extension directory on /extensions, copying ext to that directory" && cp -r /app/* /extensions/) || echo "No extension directory found on /extensions, skipping copy"