7e379cfab1
* Reduce size of container image * Add deprecation message for automatic --mathjax
11 lines
253 B
Bash
Executable File
11 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Initialize the wiki
|
|
if [ ! -d .git ]; then
|
|
git init
|
|
fi
|
|
|
|
# Start gollum service
|
|
[[ "$@" != *--mathjax* ]] && echo "WARNING: Mathjax will soon be disabled by default. To explicitly enable it, use --mathjax" >&2
|
|
exec gollum $@ --mathjax
|