Fix deleting hometown dir

This commit is contained in:
3wc
2023-07-16 17:30:07 +01:00
parent f7efbb0490
commit 6f2a868f26

View File

@ -9,8 +9,10 @@ eval "$(yq '.steps.[0].commands[]' < .drone.yml)"
TAG="$(yq '.steps.[1].settings.tags' < .drone.yml)"
cd hometown || return 1
(
cd hometown || return 1
docker build -t "$TAG" .
docker build -t "$TAG" .
)
rm -r hometown