Sha256: 774622d8ae92718b06ec7f6ca36fdaf62cb09fce7909cb995abf38dcb73a58b4
Contents?: true
Size: 285 Bytes
Versions: 6
Compression:
Stored size: 285 Bytes
Contents
#!/bin/sh SWFMILL=../../src/swfmill file=$1 swf=`basename ${file}`.swf target=${swf}.xml $SWFMILL xml2swf ${file} ${swf} $SWFMILL swf2xml ${swf} ${target} if [ ! -e ${swf} -o ! -e ${target} ]; then exit 1 fi diff -q ${file} ${target} ret=$? if [ ${ret} -ne 0 ]; then exit 1 fi
Version data entries
6 entries across 6 versions & 1 rubygems