Skip to content

Commit

Permalink
fix: correct assignment of task.title variable
Browse files Browse the repository at this point in the history
  • Loading branch information
clementbirkle authored and pirog committed Dec 3, 2024
1 parent 7d536c0 commit d750278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ module.exports = class UpdateManager {
const rcFile = require('../utils/get-shell-profile')();
require('../utils/update-shell-profile')(rcFile, shellEnv);
this.debug('added %o to %o', shellEnv, rcFile);
task.title `${task.title}. Start a new terminal session to use the updated ${color.bold(`lando`)}`;
task.title = `${task.title}. Start a new terminal session to use the updated ${color.bold(`lando`)}`;

// otherwis i guess do something else?
// @TODO: throw a warning?
Expand Down

0 comments on commit d750278

Please sign in to comment.