Skip to content

Commit

Permalink
(simatec) Beta 2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
simatec committed Nov 2, 2023
1 parent 3b4280d commit 356fe24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ When the adapter crashes or another Code error happens, this error message that

## Changelog
<!-- ### **WORK IN PROGRESS** -->
### **WORK IN PROGRESS**
* (simatec) ignore Build directory for ESPHome added

### 2.9.0 (2023-11-01)
* (simatec) mount option "Cache Loose" added
* (simatec) ESPHome Backup added
Expand Down
4 changes: 3 additions & 1 deletion lib/scripts/48-esphome.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ function command(options, log, callback) {
dest: fileName,
tar: {
ignore: function (name) {
return path.extname(name) != '.yaml' // ignore all was not .yaml files when packing
//return path.extname(name) != '.yaml' // ignore all was not .yaml files when packing
//return path.dirname(name) === path.join(pth, '.esphome') || path.dirname(name) === path.join(pth, '.gitignore') // ignore all was not .yaml files when packing
return path.basename(name) === '.esphome' || path.basename(name) === '.gitignore' // ignore all was not .yaml files when packing basename
}
}
}, (err, stdout, stderr) => {
Expand Down

0 comments on commit 356fe24

Please sign in to comment.