mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
bitbake: toastergui: Consider task name when restarting a build
'Run again' button now restarts the build using target:task if task was specified for the build. [YOCTO #7442] (Bitbake rev: 420b197227394b341bcc1075bc298ecf2aabec46) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
44b7b67154
commit
a5193d3c7f
@@ -357,7 +357,7 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc
|
||||
};
|
||||
|
||||
$scope.buildExistingTarget = function(targets) {
|
||||
$scope.buildTargetList(targets.map(function(v){return v.target;}));
|
||||
$scope.buildTargetList(targets.map(function(v){return ((v.task) ? v.target + ":" + v.task : v.target);}));
|
||||
};
|
||||
|
||||
$scope.buildTargetList = function(targetlist) {
|
||||
|
||||
Reference in New Issue
Block a user