diff options
author | Michael Reed <michael@michaelreed.io> | 2017-07-12 19:32:32 -0400 |
---|---|---|
committer | Michael Reed <michael@michaelreed.io> | 2017-07-12 19:32:32 -0400 |
commit | 61478edec677ea75523655a1d866a8a5652488a3 (patch) | |
tree | 2b95841706fde5df116b83f14a0f40dfd7e86e51 | |
parent | 8c7d21cbf45a4279dcffae95ce626a0dc9006a30 (diff) | |
download | librebootfr-61478edec677ea75523655a1d866a8a5652488a3.tar.gz librebootfr-61478edec677ea75523655a1d866a8a5652488a3.zip |
www/index.sh: Replace cat(1) usage with faster bashism
-rwxr-xr-x | www/index.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/index.sh b/www/index.sh index 618b8fc5..45b9f575 100755 --- a/www/index.sh +++ b/www/index.sh @@ -38,7 +38,7 @@ meta() { # generate the index file # MANIFEST determines the order of news articles in news/index.md -FILES=$(cat news/MANIFEST) +FILES=$(< news/MANIFEST) cat news-list.md > news/index.md |