Skip to content
Snippets Groups Projects
Commit ac34b694 authored by Andres Maldonado's avatar Andres Maldonado
Browse files

[get-modified-image.sh] Replace tabs with spaces (tabs are evil)

(and with spaces it's easier to copy-paste in a console for debugging)
parent 469ad81e
No related branches found
No related tags found
No related merge requests found
......@@ -7,12 +7,12 @@
RES=""
for i in $(git log -m -1 --name-only --pretty="format:" --first-parent)
do
case "$i" in
*pica*|*meta*)
RES=$(echo $i | cut -d '/' -f1)
break
;;
esac
case "$i" in
*pica*|*meta*)
RES=$(echo $i | cut -d '/' -f1)
break
;;
esac
done
echo "export MODIFIED_IMAGE=${RES}" > variables
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment