Skip to content

Commit ff2a520

Browse files
ikepu-tpohakutsu
andauthored
Update src/commands/publish.ts
Co-authored-by: ohakutsu <dev@ohakutsu.com>
1 parent 63852bc commit ff2a520

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/publish.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const publish = async (argv: string[]) => {
2626
let targetItems: QiitaItem[];
2727
if (args["--all"]) {
2828
targetItems = (await fileSystemRepo.loadItems()).filter((item) => {
29-
if (item.ignorePublish === false) return false;
29+
if (item.ignorePublish === true) return false;
3030
return item.modified || item.id === null;
3131
});
3232
} else {

0 commit comments

Comments
 (0)