Compile all files.

We don't currently resolve dependencies, so it's not possible to
actually skip these files.
This commit is contained in:
Nicolás A. Ortega Froysa 2025-03-12 09:38:46 +01:00
parent 15b1a6791c
commit a0a866fab5

View File

@ -98,10 +98,6 @@ function process_file() {
then then
DEST_FILE="${DEST_FILE::-4}" DEST_FILE="${DEST_FILE::-4}"
DEST_DIR="$(dirname "$DEST_FILE")" DEST_DIR="$(dirname "$DEST_FILE")"
if ! [ "$file" -nt "$DEST_FILE" ]
then
return
fi
if ! [ -d "$DEST_DIR" ] if ! [ -d "$DEST_DIR" ]
then then
mkdir -p "$DEST_DIR" mkdir -p "$DEST_DIR"
@ -111,10 +107,6 @@ function process_file() {
echo "done" echo "done"
else else
DEST_DIR="$(dirname "$DEST_FILE")" DEST_DIR="$(dirname "$DEST_FILE")"
if ! [ "$file" -nt "$DEST_FILE" ]
then
return
fi
if ! [ -d "$DEST_DIR" ] if ! [ -d "$DEST_DIR" ]
then then
mkdir -p "$DEST_DIR" mkdir -p "$DEST_DIR"