presumably my resume in a programattic format... or not, since json resume didn't catch on?
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..763cdd0 --- /dev/null +++ b/build.sh @@ -0,0 +1,5 @@ +#!/bin/bash +cat resume.yml |python3 -c 'import json,sys;from ruamel.yaml import YAML;yaml=YAML(); print(json.dumps(yaml.load(sys.stdin)))' > resume.fresh.json +hackmyresume convert resume.fresh.json to resume.jsr.json +hackmyresume build resume.fresh.json index.html +hackmyresume build resume.fresh.json paper.html -t node_modules/jsonresume-theme-paper |