removed find -regex and merged pattern into awk command

basically this means that rivet works on alpine (busybox)
pull/1/head
Alessandro Mauri 2 years ago
parent 073c779f93
commit 8f1508e200
  1. 2
      makefile
  2. 5
      rivet.sh

@ -1,4 +1,4 @@
VERSION = 0.3
VERSION = 0.3.1
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
# Copyright (c) 2021 Alessandro Mauri
#
@ -169,8 +169,7 @@ cp -r "$srcdir"/* "$destdir"
rm -f "$destdir"/_header.html "$destdir"/_footer.html "$destdir"/_metadata.html
# Generate an ordered (by open time) file list
find "$srcdir" -type f -regex '.*\/[^_].+\..*' -exec ls -1t {} + |
awk '/.*\.(md|html)$/' > "$objlist"
find "$srcdir" -type f -exec ls -1t {} + | awk '/^.*\/[^_].+\.(md|html)$/' > "$objlist"
rm -f "$objdate"
while IFS="" read -r file; do
stat -c '%y' "$file" >> "$objdate"

Loading…
Cancel
Save