Skip to content

Commit

Permalink
fix: apt options
Browse files Browse the repository at this point in the history
  • Loading branch information
zdm committed Apr 18, 2024
1 parent 0d8e7f1 commit 550dbbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/commands/apt/build-images.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ export default class extends Command {
const res = apt.checkRepository();
if ( !res.ok ) return res;

return apt.buildImages( process.cli.options.codenames );
return apt.buildImages( process.cli.options.codename );
}
}
2 changes: 1 addition & 1 deletion lib/commands/apt/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ export default class extends Command {
const res = apt.checkRepository();
if ( !res.ok ) return res;

return apt.build( process.cli.arguments.package, process.cli.options.codenames );
return apt.build( process.cli.arguments.package, process.cli.options.codename );
}
}

0 comments on commit 550dbbe

Please sign in to comment.