Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QKxGW1raAWaqeU8WdHsMsp
11 lines
224 B
Bash
Executable File
11 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
# omarchy:summary=Show the OmarchyCN version
|
|
# omarchy:examples=omarchycn version
|
|
|
|
set -euo pipefail
|
|
|
|
upstream=$(<"$OMARCHY_PATH/version")
|
|
release=$(<"$OMARCHY_PATH/cn/release")
|
|
|
|
echo "${upstream}-cn.${release}"
|