-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 fix(theBrain): Exclude backup folder from file search
In this commit, we address the issue where our PowerShell scripts were incorrectly searching for both original and backup files. The previous implementation inadvertently included the backup folder in the search results. To resolve this, we now use the following way to limit the path(s) to search: ```powershell $PathToSearch = Get-ChildItem -Directory -Path $BrainFolder -Exclude ‘Backup’ ``` This ensures that only original files are considered, excluding any files within the 'Backup' folder. Fixes #16
- Loading branch information
1 parent
16b9048
commit a8f5a4d
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters