Skip to content

Commit ba82321

Browse files
authored
everything: Fix persistence logic
1 parent c61d41a commit ba82321

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bucket/everything.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
" Start-Process -FilePath \"$dir\\Everything.exe\" -ArgumentList @('-install-config', 'null') -NoNewWindow -Wait",
3131
"}",
3232
"# Hard links are not applicable here because the application creates a new file instead of modifying the existing one in place.",
33-
"'*.db', '*.csv', '*.ico', '*.ini', 'txt' | ForEach-Object {",
33+
"'*.db', '*.csv', '*.ico', '*.ini', '*.txt' | ForEach-Object {",
3434
" if (Test-Path -Path \"$persist_dir\\$_\" -PathType Leaf) {",
3535
" Copy-Item -Path \"$persist_dir\\$_\" -Destination $dir -Force",
3636
" }",
@@ -57,7 +57,7 @@
5757
],
5858
"pre_uninstall": [
5959
"# Hard links are not applicable here because the application creates a new file instead of modifying the existing one in place.",
60-
"'*.db', '*.csv', '*.ico', '*.ini', 'txt' | ForEach-Object {",
60+
"'*.db', '*.csv', '*.ico', '*.ini', '*.txt' | ForEach-Object {",
6161
" if (Test-Path -Path \"$dir\\$_\" -PathType Leaf) {",
6262
" Copy-Item -Path \"$dir\\$_\" -Destination $persist_dir -Force",
6363
" }",

0 commit comments

Comments
 (0)