We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd37e5a + dac4916 commit b337c7fCopy full SHA for b337c7f
tools/make.py
@@ -99,6 +99,8 @@
99
default=None, help="Duration of the test")
100
parser.add_option("--build", dest="build_dir",
101
default=None, help="The build (output) directory")
102
+ parser.add_option("-N", "--artifact-name", dest="artifact_name",
103
+ default=None, help="The built project's name")
104
parser.add_option("-d", "--disk", dest="disk",
105
default=None, help="The mbed disk")
106
parser.add_option("-s", "--serial", dest="serial",
@@ -253,7 +255,8 @@
253
255
verbose=options.verbose,
254
256
silent=options.silent,
257
macros=options.macros,
- jobs=options.jobs)
258
+ jobs=options.jobs,
259
+ name=options.artifact_name)
260
print 'Image: %s'% bin_file
261
262
if options.disk:
0 commit comments