#!/bin/bash
for def in debian/lua*.dh-lua.conf; do
  lua_version=${def%.dh-lua.conf}
  lua_version=${lua_version#debian/}
  echo "run busted with $lua_version"
  busted --lua=/usr/bin/$lua_version --exclude-tags=manual spec/
done
