From b296f511532779bde700d2b5843aebdf03058c50 Mon Sep 17 00:00:00 2001 From: Bill Hollings Date: Tue, 2 Oct 2018 15:14:33 -0400 Subject: [PATCH] Fix descriptive comments in fetchDependencies script. --- fetchDependencies | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/fetchDependencies b/fetchDependencies index b4f1f4f0..86dda2e7 100755 --- a/fetchDependencies +++ b/fetchDependencies @@ -107,6 +107,7 @@ echo mkdir -p ${EXT_DIR} cd ${EXT_DIR} + # ----------------- Cereal ------------------- REPO_NAME=cereal @@ -118,8 +119,8 @@ update_repo ${REPO_NAME} ${REPO_URL} ${REPO_REV} # ----------------- Vulkan-Headers ------------------- -# When MoltenVK is built by something that already has a copy of the -# Vulkan-Headers repo, use it by creating a symlink. +# When MoltenVK is built by something that already has +# a copy of this repo, use it by creating a symlink. if [ ! "$V_HEADERS_ROOT" = "" ]; then REPO_NAME=Vulkan-Headers rm -rf ${REPO_NAME} @@ -135,8 +136,8 @@ fi # ----------------- SPIRV-Cross ------------------- -# When MoltenVK is built by something that already has a copy of the -# Vulkan-Headers repo, use it by creating a symlink. +# When MoltenVK is built by something that already has +# a copy of this repo, use it by creating a symlink. if [ ! "$SPIRV_CROSS_ROOT" = "" ]; then REPO_NAME=SPIRV-Cross rm -rf ${REPO_NAME} @@ -152,8 +153,8 @@ fi # ----------------- glslang ------------------- -# When MoltenVK is built by something that already has a copy of the -# Vulkan-Headers repo, use it by creating a symlink. +# When MoltenVK is built by something that already has +# a copy of this repo, use it by creating a symlink. if [ ! "$GLSLANG_ROOT" = "" ]; then REPO_NAME=glslang rm -rf ${REPO_NAME} @@ -181,6 +182,7 @@ REPO_REV=$(cat "../${EXT_REV_DIR}/${REPO_NAME}_repo_revision") update_repo ${REPO_NAME} ${REPO_URL} ${REPO_REV} + # ----------------- VulkanSamples ------------------- REPO_NAME=VulkanSamples @@ -190,5 +192,7 @@ REPO_REV=$(cat "../${EXT_REV_DIR}/${REPO_NAME}_repo_revision") update_repo ${REPO_NAME} ${REPO_URL} ${REPO_REV} +# ----------------- Cleanup ------------------- + cd ..