no longer testing

This commit is contained in:
2023-08-23 21:37:24 -07:00
parent 140171c2d2
commit 4e1074d23c
3 changed files with 25 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Find all files of type PNG, JPEG, or TIFF
files=$(find ../hugo-content/static/test-img -type f -iname "*.png" -o -iname "*.jpg" -o -iname "*.tif")
files=$(find ../hugo-content/static/img -type f -iname "*.png" -o -iname "*.jpg" -o -iname "*.tif")
# Loop through all the files in the directory
for file in $files; do