mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
bitbake: toastergui: project app build command fix
This patch fixes the build command in the angular project for builds triggered from All targets page. (Bitbake rev: bfd56aa653a1ec7f8777bcb5e627910c3a7ee35b) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
feb95bb049
commit
2b629e6182
@@ -327,7 +327,7 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc
|
||||
}).error(function(_data, _status, _headers, _config) {
|
||||
if (_status === 0) {
|
||||
// the server has gone away
|
||||
alert("The server is not responding. The application will terminate now");
|
||||
// alert("The server is not responding. The application will terminate now");
|
||||
$interval.cancel($scope.pollHandle);
|
||||
}
|
||||
else {
|
||||
@@ -652,9 +652,9 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc
|
||||
*/
|
||||
|
||||
$scope.updateDisplayWithCommands = function() {
|
||||
cmd = $location.path();
|
||||
|
||||
function _cmdExecuteWithParam(param, f) {
|
||||
var cmd = $location.path();
|
||||
if (cmd.indexOf(param) === 0) {
|
||||
if (cmd.indexOf("=") > -1) {
|
||||
var parameter = cmd.split("=", 2)[1];
|
||||
@@ -725,8 +725,9 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc
|
||||
_cmdExecuteWithParam("/targetbuild=", function (targets) {
|
||||
var oldTargetName = $scope.targetName;
|
||||
$scope.targetName = targets.split(",").join(" ");
|
||||
$scope.targetNamedBuild();
|
||||
$scope.buildNamedTarget();
|
||||
$scope.targetName = oldTargetName;
|
||||
$location.path('');
|
||||
});
|
||||
|
||||
_cmdExecuteWithParam("/machineselect=", function (machine) {
|
||||
|
||||
Reference in New Issue
Block a user