Sha256: 31cee73a6bdeac41c33d49b3fde42df4da6b308c648f72117d1a31b3fd1c051b
Contents?: true
Size: 366 Bytes
Versions: 132
Compression:
Stored size: 366 Bytes
Contents
#!/bin/bash STATUS=0 APL=/usr/bin/apl APL_OPTS='--silent --Color' TMP=tmp cp --recursive exercises $TMP for exercise in ${TMP}/*; do pushd $exercise for example in *-example.apl; do mv $example ${example/-example/} done if ! ${APL} ${APL_OPTS} -T *.tc; then STATUS=1 fi popd done rm -r $TMP echo "Exiting with status ${STATUS}." exit $STATUS
Version data entries
132 entries across 132 versions & 1 rubygems