mirror of
https://github.com/open-goal/jak-project
synced 2026-05-29 16:45:10 -04:00
6 lines
215 B
Bash
Executable File
6 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
LINE_COUNT=$(find ./goal_src -name '*.gc' | xargs wc -l | tail -1 | awk -F'[^0-9]+' '{ print $2 }')
|
|
|
|
sed -i "s/.*value.*/ \"value\": ${LINE_COUNT},/g" ./docs/gh-pages-proj/src/config/progress.json
|