Source code of filesite.io.
https://filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
311 B
21 lines
311 B
3 years ago
|
#!/bin/sh
|
||
|
themes=(
|
||
|
manual
|
||
|
googleimage
|
||
|
webdirectory
|
||
|
)
|
||
|
|
||
|
theme=$1
|
||
|
if [ ! -z "${theme}" ]; then
|
||
|
if [[ ! "${themes[@]}" =~ "${theme}" ]]; then
|
||
|
theme=webdirectory
|
||
|
fi
|
||
|
else
|
||
|
theme=webdirectory
|
||
|
fi
|
||
|
|
||
|
echo "Theme chosed [${theme}]."
|
||
|
|
||
|
##TODO: 复制对应皮肤的配置文件到docker容器指定目录
|
||
|
|