8 lines
79 B
Plaintext
8 lines
79 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -o errexit
|
||
|
|
set -o pipefail
|
||
|
|
set -o nounset
|
||
|
|
|
||
|
|
exec make livehtml
|