File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ func run(command *cobra.Command, args []string) {
194
194
uploadProperties .Merge (referencedPlatformRelease .Properties )
195
195
}
196
196
uploadProperties .Merge (platformRelease .Properties )
197
-
197
+ uploadProperties . Merge ( platformRelease . RuntimeProperties ())
198
198
uploadProperties .Merge (boardProperties )
199
199
200
200
uploadToolProperties := uploadProperties .SubTree ("tools." + uploadTool .Name )
Original file line number Diff line number Diff line change @@ -161,6 +161,13 @@ func (release *PlatformRelease) GetOrCreateBoard(boardID string) *Board {
161
161
return board
162
162
}
163
163
164
+ // RuntimeProperties returns the runtime properties for this PlatformRelease
165
+ func (release * PlatformRelease ) RuntimeProperties () properties.Map {
166
+ return properties.Map {
167
+ "runtime.platform.path" : release .Folder ,
168
+ }
169
+ }
170
+
164
171
func (release * PlatformRelease ) String () string {
165
172
return release .Platform .String () + "@" + release .Version
166
173
}
You can’t perform that action at this time.
0 commit comments