Skip to content

Commit 6191896

Browse files
committed
🐛 backupzip includes dotfiles (for accounts)
1 parent 5c6b064 commit 6191896

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# OS files
22
.DS_Store
33
.idea
4+
.nova
45
*.cache
56

67
node_modules

commands/backupzip.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
$roots = explode(',', $roots);
6969
}
7070
$finder = new Finder();
71-
$finder->files()->in($roots);
71+
$finder->files()->ignoreDotFiles(false)->in($roots);
7272
if (!empty($cli->arg('date'))) {
7373
$finder->date($cli->arg('date'));
7474
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bnomei/kirby3-janitor",
33
"type": "kirby-plugin",
4-
"version": "3.9.0",
4+
"version": "3.9.1",
55
"license": "MIT",
66
"homepage": "https://github.com/bnomei/kirby3-janitor",
77
"description": "Kirby 3 Plugin for running commands like cleaning the cache from within the Panel, PHP code or a cronjob",

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/composer/installed.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php return array(
22
'root' => array(
33
'name' => 'bnomei/kirby3-janitor',
4-
'pretty_version' => '3.9.0',
5-
'version' => '3.9.0.0',
4+
'pretty_version' => '3.9.1',
5+
'version' => '3.9.1.0',
66
'reference' => NULL,
77
'type' => 'kirby-plugin',
88
'install_path' => __DIR__ . '/../../',
@@ -11,8 +11,8 @@
1111
),
1212
'versions' => array(
1313
'bnomei/kirby3-janitor' => array(
14-
'pretty_version' => '3.9.0',
15-
'version' => '3.9.0.0',
14+
'pretty_version' => '3.9.1',
15+
'version' => '3.9.1.0',
1616
'reference' => NULL,
1717
'type' => 'kirby-plugin',
1818
'install_path' => __DIR__ . '/../../',

0 commit comments

Comments
 (0)