mirror of https://github.com/yt-dlp/yt-dlp.git
Merge pull request #245 from rbrito/fix-makefile
Makefile: Don't use `echo`'s `-e` option for portability.
This commit is contained in:
commit
0b3f3e1ad9
6
Makefile
6
Makefile
|
@ -10,9 +10,11 @@ update-readme:
|
||||||
header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
|
header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \
|
||||||
footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
|
footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \
|
||||||
echo "$${header}" > README.md && \
|
echo "$${header}" > README.md && \
|
||||||
echo -e '\n## OPTIONS' >> README.md && \
|
echo >> README.md && \
|
||||||
|
echo '## OPTIONS' >> README.md && \
|
||||||
echo "$${options}" >> README.md&& \
|
echo "$${options}" >> README.md&& \
|
||||||
echo -e '\n## FAQ' >> README.md && \
|
echo >> README.md && \
|
||||||
|
echo '## FAQ' >> README.md && \
|
||||||
echo "$${footer}" >> README.md
|
echo "$${footer}" >> README.md
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
|
|
Loading…
Reference in New Issue