mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
7 lines
182 B
Bash
Executable File
7 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# 升级时确保应用自身的数据目录存在。
|
|
# 数据库与 Redis 数据由 1Panel 依赖应用管理。
|
|
mkdir -p "${APP_DATA_DIR_1:-./data}"
|