From 83e79fffd6617f54c5c42505be56175ea607fbf5 Mon Sep 17 00:00:00 2001 From: Maxim Berezhnoy Date: Sat, 1 Dec 2018 23:38:16 +0100 Subject: [PATCH] consistent variable usage --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 45baf0d..3d11688 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,8 @@ pod "Cuckoo" And add the following `Run script` build phase to your test target's `Build Phases`: ```Bash -# Define output file. Change "$PROJECT_DIR/${PROJECT_NAME}Tests" to your test's root source folder, if it's not the default name. -OUTPUT_FILE="$PROJECT_DIR/${PROJECT_NAME}Tests/GeneratedMocks.swift" +# Define output file. Change "${PROJECT_DIR}/${PROJECT_NAME}Tests" to your test's root source folder, if it's not the default name. +OUTPUT_FILE="${PROJECT_DIR}/${PROJECT_NAME}Tests/GeneratedMocks.swift" echo "Generated Mocks File = $OUTPUT_FILE" # Define input directory. Change "${PROJECT_DIR}/${PROJECT_NAME}" to your project's root source folder, if it's not the default name.