build.sh 188 B

12345678910111213
  1. #!/bin/sh -e
  2. cd "`dirname "$0"`"
  3. for d in gnulinux_x86 osx64 w32
  4. do
  5. cd "$d"
  6. shred -uzn0 ../"$d".xpi
  7. zip -9rXD ../"$d".xpi ./*
  8. cd ..
  9. strip-nondeterminism -t zip ./"$d".xpi
  10. done