8 lines
No EOL
250 B
Bash
Executable file
8 lines
No EOL
250 B
Bash
Executable file
#!/bin/bash
|
|
locale -a | grep -i "utf8" 2>&1 > /dev/null
|
|
if [[ ! $? -eq 0 ]]; then
|
|
echo -e "\033[31;1mPlease install utf8 locale\033[0m"
|
|
exit 1
|
|
fi
|
|
_RDIR=$(cd `dirname $0` && pwd)
|
|
${_RDIR}/bin/homemaker.amd64 -variant $@ ${_RDIR}/common.toml ${_RDIR} |