From 8c03df36fe62372222cb7d9ca8f02c894f217413 Mon Sep 17 00:00:00 2001 From: Dan Streetman Date: Sat, 17 Aug 2019 12:24:00 -0400 Subject: [PATCH] test/test-functions: add mkdir to import_initdir This dir is created by create_empty_image_rootdir, as well as indirectly by some other functions, but it should be created by import_initdir so the newly-exported $initdir exists and can be used immediately without relying on other functions to create it. --- test/test-functions | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test-functions b/test/test-functions index a534fb218d..03bfcaf972 100644 --- a/test/test-functions +++ b/test/test-functions @@ -941,6 +941,7 @@ import_testdir() { import_initdir() { initdir=$TESTDIR/root + mkdir -p $initdir export initdir }