Skip to content

Commit 95645f3

Browse files
committed
Make skip-cmake-bootstrap unconditional
Follow up to #7089 I don't necessarily expect this to work as-is.
1 parent 9c290df commit 95645f3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Utilities/bootstrap

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,7 @@ def parse_build_args(args):
238238
args.bootstrap_dir = os.path.join(args.target_dir, "bootstrap")
239239
args.conf = 'release' if args.release else 'debug'
240240
args.bin_dir = os.path.join(args.target_dir, args.conf)
241-
args.bootstrap = not args.skip_cmake_bootstrap or \
242-
not os.path.exists(os.path.join(os.path.split(args.swiftc_path)[0], "swift-build"))
241+
args.bootstrap = not args.skip_cmake_bootstrap
243242

244243
def parse_test_args(args):
245244
"""Parses and cleans arguments necessary for the test action."""

0 commit comments

Comments
 (0)