Skip to content

Commit be3aa42

Browse files
authored
Development- fix for Gource Viz script (MetaMask#20393)
image path was broken at some point
1 parent fb8d018 commit be3aa42

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

development/gource-viz.sh

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -x
44
gource \
55
--seconds-per-day .025 \
66
--user-scale 1.5 \
7-
--default-user-image "./images/icon-512.png" \
7+
--default-user-image "./app/images/icon-512.png" \
88
--viewport 1280x720 \
99
--auto-skip-seconds .05 \
1010
--multi-sampling \
@@ -21,4 +21,13 @@ gource \
2121
--title "MetaMask Development History" \
2222
--output-ppm-stream - \
2323
--output-framerate 30 \
24-
| ffmpeg -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K metamask-dev-history.mp4
24+
| \
25+
ffmpeg \
26+
-y \
27+
-r 30 \
28+
-f image2pipe \
29+
-vcodec ppm \
30+
-i \
31+
- \
32+
-b:v 65536K \
33+
metamask-dev-history.mp4

0 commit comments

Comments
 (0)