Skip to content

Commit 69b57a3

Browse files
committed
Print the final location of the built application
1 parent 3f03ad3 commit 69b57a3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Scripts/build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python
2+
# encoding: utf-8
23

34
import argparse
45
import subprocess
@@ -9,8 +10,9 @@
910

1011

1112
def build(project):
12-
print "Building scheme {} ({})".format(project.scheme(), project.current_config())
13+
print "Building scheme {} ({}), please wait…".format(project.scheme(), project.current_config())
1314
helpers.xcodebuild(project.scheme(), project.workspace(), project.current_build_config(), ["build"], project.build_base_dir())
15+
print "Successfully built to {}".format(project.build_product())
1416

1517

1618
def clean(project):

0 commit comments

Comments
 (0)