consistent variable usage

This commit is contained in:
Maxim Berezhnoy 2018-12-01 23:38:16 +01:00 committed by Matyáš Kříž
parent 349fa1c154
commit 83e79fffd6
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ pod "Cuckoo"
And add the following `Run script` build phase to your test target's `Build Phases`: And add the following `Run script` build phase to your test target's `Build Phases`:
```Bash ```Bash
# Define output file. Change "$PROJECT_DIR/${PROJECT_NAME}Tests" to your test's root source folder, if it's not the default name. # 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" OUTPUT_FILE="${PROJECT_DIR}/${PROJECT_NAME}Tests/GeneratedMocks.swift"
echo "Generated Mocks File = $OUTPUT_FILE" 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. # Define input directory. Change "${PROJECT_DIR}/${PROJECT_NAME}" to your project's root source folder, if it's not the default name.