ssnail

crappy and opinionated static site generator
git clone https://git.e1e0.net/ssnail.git
Log | Files | Refs | README | LICENSE

commit ac4cf681dcd093675456a5e41cd6497c53bc7b84
parent 4356b42ad6870ba72fc7eb247fff3069591bf6b9
Author: Paco Esteban <paco@e1e0.net>
Date:   Thu, 18 Jun 2020 18:16:03 +0200

fix header flag.

Diffstat:
Mssnail.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssnail.c b/ssnail.c @@ -101,7 +101,7 @@ main(int argc, char *argv[]) break; case 'h': free(header_tpl); - header_tpl = strdup(FOOTER); + header_tpl = strdup(optarg); if (header_tpl == NULL) return -1; break;