schon/scripts/Unix/starter.sh
Egor fureunoir Gorbunov b92e7e28f1 Features: 1) Add new email content translations for ru_RU, zh_Hans, and ro_RO locales; 2) Update "balance deposit" and general email-related translations across multiple languages;
Fixes: 1) Correct inconsistent formatting in translation strings; 2) Fix placeholders in email templates for better accuracy;

Extra: Update `.gitignore` to include `.env` file exclusion.
2025-06-22 20:18:19 +03:00

24 lines
693 B
Bash

#!/usr/bin/env bash
set -euo pipefail
if [ -n "${BASH_VERSION-}" ]; then script_path="${BASH_SOURCE[0]}"
elif [ -n "${ZSH_VERSION-}" ]; then script_path="${(%):-%x}"
else script_path="$0"
fi
script_dir="$(cd "$(dirname "$script_path")" && pwd -P)"
if [ ! -d "./evibes" ]; then
echo "❌ Please run this script from the project's root (where the 'evibes' directory lives)." >&2
exit 1
fi
art_path="$script_dir/../ASCII_ART_EVIBES"
if [ ! -f "$art_path" ]; then
echo "❌ Could not find ASCII art at $art_path" >&2
exit 1
fi
cat "$art_path"
echo
echo " by WISELESS TEAM"
echo