I'm trying to get a list of all the js files that changed to know what to reminify.
I previously asked this question
So far this is the best I came up with but it feels really unsafe.
GITCHANGES=$(git whatchanged -n 1 --pretty=format:)
I=0;
for f in $GITCHANGES;
do
I=$(($I + 1));
if [[ $(($I % 6 )) == 0 ]]; then
echo "$f"
fi
done
But this gives me all the files that changed (php
css
js
) and not just the js
files
How would I get just the js files? Also is there a better way to accomplish this?