From 8502e925923e283aa209505d0efd55fae3e011b2 Mon Sep 17 00:00:00 2001 From: Michelle Date: Thu, 2 Mar 2023 09:36:22 -0500 Subject: [PATCH] Assuring the base dir exists Bug fix where the basedir is created to prevent errors. --- type/__evilham_buildbot/manifest | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/type/__evilham_buildbot/manifest b/type/__evilham_buildbot/manifest index b3a3f73..339cbb6 100755 --- a/type/__evilham_buildbot/manifest +++ b/type/__evilham_buildbot/manifest @@ -9,6 +9,10 @@ if [ "${conf_source}" = "_" ]; then conf_source="${__object:?}/stdin" fi +# Make sure the basedir exists + +__directory "${BASE_DIR}" --parents + # Main package __package "${PY}-buildbot" pkg_require="__package/${PY}-buildbot" -- 2.45.2