Skip to content

Commit 85a5721

Browse files
Dylan MarykMatty Cross
Dylan Maryk
authored and
Matty Cross
committed
Make make more reliable.
1 parent ca4c4d8 commit 85a5721

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Makefile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
dev:
44
(killall Xcode || true)
55

6+
# Create generated mocks file which will be populated later.
7+
touch "Tests/Swift/Generated/GeneratedMocks.swift"
8+
69
# Generate Xcode structure.
710
TUIST_PROJECT_DIR=$(PWD) tuist generate --no-open
811

@@ -15,18 +18,12 @@ init:
1518
# Install Gemfile dependencies if `bundle` is available.
1619
if ! command -v bundle &> /dev/null; then bundle install; fi
1720

18-
# Create generated mocks file which will be populated later.
19-
touch "Tests/Swift/Generated/GeneratedMocks.swift"
20-
2121
# Generate Cuckoo workspace.
2222
make dev
2323

2424
ci:
2525
# Install Tuist if not present.
2626
if ! command -v tuist &> /dev/null; then curl -Ls https://install.tuist.io | bash; fi
2727

28-
# Create generated mocks file which will be populated later.
29-
touch "Tests/Swift/Generated/GeneratedMocks.swift"
30-
3128
# Generate Cuckoo workspace.
3229
make dev

0 commit comments

Comments
 (0)