unibest/shell/postinstall.sh
2024-01-23 19:21:39 +08:00

7 lines
140 B
Bash

if test -f ./src/manifest.json; then
echo ./src/manifest.json 存在
else
touch ./src/manifest.json
echo "{}" >./src/manifest.json
fi