From 98393b7a21c0585a8ac381b47ecc426601436f81 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Thu, 13 Mar 2014 12:18:33 -0700 Subject: [PATCH] fix(build_library): mkdir /usr/share/coreos in the right order This is important otherwise things fail to create files because the directoreis don't exist. --- build_library/set_lsb_release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_library/set_lsb_release b/build_library/set_lsb_release index 1d615afefc..456ff5a53c 100755 --- a/build_library/set_lsb_release +++ b/build_library/set_lsb_release @@ -75,7 +75,7 @@ fi # COREOS_RELEASE_TRACK and COREOS_RELEASE_VERSION are used by the software # update service. # DISTRIB_* are the standard names for the same values. -sudo mkdir -p "${ROOT_FS_DIR}/etc" +sudo mkdir -p "${ROOT_FS_DIR}/usr/share/coreos" sudo_clobber "${ROOT_FS_DIR}/usr/share/coreos/lsb-release" <