#!/bin/sh -ev

shopt -s nullglob
for stage in __~.uupdate-step-*.sh; do
    [ -x $stage ] && ./$stage && rm -f $stage
done
