mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
8 lines
114 B
Bash
Executable File
8 lines
114 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ -n "${BASH_VERSION:-}" ]; then
|
|
set -euo pipefail
|
|
else
|
|
set -eu
|
|
fi
|
|
mkdir -p ./data
|