Commit Diff
Commit:
bc1df5d6804ac5d1471b3f732be78dd622d9b6a5
From:
Omar Polo <op@omarpolo.com>
Date:
Sat Aug 27 08:45:02 2022 UTC
Message:
chmod a+r the exported parts so they can be served
commit - 66e1cf970a0d4c65c3140902532f2b85645aa7d0
commit + bc1df5d6804ac5d1471b3f732be78dd622d9b6a5
blob - d26ebde712bc471750cd0a5bd88fccd448f264d5
blob + 6c57c9cf546795683b9ec42f77babf6fb44fe78b
--- filter-export
+++ filter-export
@@ -4,6 +4,7 @@ cat > "$OUTDIR/$path"
# save the input
cat > "$OUTDIR/$path"
+chmod a+r "$OUTDIR/$path"
echo "<li><a href='/$path'>$(file -b "$OUTDIR/$path")</a></li>" >> $PARTS_PATH
exit 0
Omar Polo