build_images.sh 435 B

12345678910111213141516171819202122232425262728
  1. #!/bin/bash
  2. BASE=.$$images.h
  3. FINAL=images.h
  4. export PATH=$PATH:build:.
  5. # echo $PATH
  6. ansi-to-src ansi/*.ans > $BASE
  7. # workaround
  8. if [ -f "$FINAL" ]; then
  9. # file exists
  10. diff -q $BASE $FINAL
  11. status=$?
  12. if [ $status -eq 0 ]; then
  13. echo "no change..."
  14. # Clean up temp file
  15. rm -f $BASE
  16. else
  17. mv -f $BASE $FINAL
  18. fi
  19. else
  20. # file doesn't exist, so no choice by to copy it over.
  21. mv -f $BASE $FINAL
  22. fi