We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63852bc commit ff2a520Copy full SHA for ff2a520
src/commands/publish.ts
@@ -26,7 +26,7 @@ export const publish = async (argv: string[]) => {
26
let targetItems: QiitaItem[];
27
if (args["--all"]) {
28
targetItems = (await fileSystemRepo.loadItems()).filter((item) => {
29
- if (item.ignorePublish === false) return false;
+ if (item.ignorePublish === true) return false;
30
return item.modified || item.id === null;
31
});
32
} else {
0 commit comments