hyprland-void-dots/configs/shell/.zsh/functions/helpers.zsh
2024-03-22 19:30:14 +03:30

14 lines
319 B
Bash

params_required() {
local param_name="$1"
local param_value="$2"
local error_message="$3"
if [ -z "$error_message" ]; then
error_message="Parameter '$param_name' is required but not provided."
fi
if [ -z "$param_value" ]; then
echo "$error_message" >&2
exit 1
fi
}