decentral1se 0be532692d
Some checks failed
continuous-integration/drone/pr Build is failing
test: moar integration tests [ci skip]
2023-09-20 13:51:06 +02:00

12 lines
198 B
Bash

#!/usr/bin/env bash
_checkout_recipe() {
if [[ -z "$1" ]]; then
echo 'forgot to pass argument to function?'
exit 1
fi
run git -C "$ABRA_DIR/recipes/$1" checkout .
assert_success
}