This repository has been archived on 2026-03-31. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
jelly/build.rs

12 lines
236 B
Rust

// build.rs
//
// A build script. What, you wanna fight about it? Here's your paycheck.
//
// @author Ryan McGrath <ryan@rymc.io>
// @created 06/18/2018
extern crate askama;
fn main() {
askama::rerun_if_templates_changed();
}