File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ javafx.version=19_monocle
52
52
javafx.mirror =https://download2.gluonhq.com/openjfx
53
53
54
54
# Provisioning
55
- provision.file =${basedir}/provision.json
55
+ # provision.file=${basedir}/provision.json
56
56
provision.dir =${dist.dir}/provision
57
57
58
58
# Mask tray toggle (Apple only)
Original file line number Diff line number Diff line change 281
281
<echo level =" warn" >The "include-assets" task is deprecated, please use "build-demo" instead.</echo >
282
282
</target >
283
283
284
- <target name =" check-provision" >
284
+ <target name =" check-provision" if =" provision.file" >
285
+ <property description =" suppress property warning" name =" provision.file" value =" " />
285
286
<available file =" ${ provision.file } " property =" provision.file.exists" />
286
- <condition property =" provision.message" value =" Found provision file '${ provision.file } ' calling 'provision --json [...]'" >
287
- <isset property =" provision.file.exists" />
288
- </condition >
289
- <property description =" Fallback value" name =" provision.message" value =" Skipping provisioning, '${ provision.file } ' does not exist." />
290
- <echo level =" info" >${ provision.message } </echo >
287
+ <fail message =" Provision file was provided but not found: '${ provision.file } '" unless =" provision.file.exists" />
288
+ <echo level =" info" >Found provision file '${ provision.file } ' calling 'provision --json [...]'</echo >
291
289
</target >
292
290
293
291
<target name =" clean-provision" depends =" check-provision" unless =" skip.clean.provision" >
You can’t perform that action at this time.
0 commit comments