Skip to content

Commit 3aa8503

Browse files
committed
Remove __pycache__, bin
1 parent db4b48a commit 3aa8503

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/serious_python/bin/package_command.dart

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,16 @@ const junkFilesDesktop = [
7272
"**.a",
7373
"**.pdb",
7474
"**.dist-info",
75+
"__pycache__",
7576
"**/__pycache__",
7677
];
77-
const junkFilesMobile = [...junkFilesDesktop, "**.exe", "**.dll", "**/bin"];
78+
const junkFilesMobile = [
79+
...junkFilesDesktop,
80+
"**.exe",
81+
"**.dll",
82+
"bin",
83+
"**/bin",
84+
];
7885

7986
class PackageCommand extends Command {
8087
bool _verbose = false;

0 commit comments

Comments
 (0)