mirror of
https://github.com/AlchemillaHQ/Sylve.git
synced 2026-06-15 00:56:36 +03:00
8 lines
126 B
Bash
8 lines
126 B
Bash
#!/bin/sh
|
|
|
|
require_dir() {
|
|
if [ ! -d "$1" ]; then
|
|
error "Required directory not found: $1"
|
|
exit 1
|
|
fi
|
|
} |