legionio 1.6.45 → 1.6.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/legion/cli/setup_command.rb +2 -1
- data/lib/legion/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84376c8818b9858755d81cc83b6e7106b84990584a602367057060f3b5344c1f
|
|
4
|
+
data.tar.gz: 27ebca7e74ce609ee428238c26a2c8bdcf6c828b03e192a17e719e446c0e1b48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bbc33b62aac175ecbe2541db4c83efc921a5154ec1d3e99d0eb5de57ed7f526098d043499a9d330a86c60fce40646618bbebb559f64c84c8e61d21589fcd4da
|
|
7
|
+
data.tar.gz: c2ae7133bf13509c174c88ea3b25321aa4a999cba744203677054ecbd7e637f9d841d8a5ea3041066193277bc315b5163da2a4756933be40736c57d902dc6267
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.6.46] - 2026-03-31
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- `write_pack_marker` no longer uses `FileUtils.touch` — avoids `EPERM` (`Operation not permitted @ apply2files`) on macOS Sequoia when marker file already exists
|
|
9
|
+
|
|
5
10
|
## [1.6.45] - 2026-03-31
|
|
6
11
|
|
|
7
12
|
### Added
|
|
@@ -301,7 +301,8 @@ module Legion
|
|
|
301
301
|
def write_pack_marker(pack_name)
|
|
302
302
|
marker_dir = File.expand_path('~/.legionio/.packs')
|
|
303
303
|
FileUtils.mkdir_p(marker_dir)
|
|
304
|
-
|
|
304
|
+
marker = File.join(marker_dir, pack_name.to_s)
|
|
305
|
+
File.write(marker, '') unless File.exist?(marker)
|
|
305
306
|
update_packs_setting(pack_name)
|
|
306
307
|
end
|
|
307
308
|
|
data/lib/legion/version.rb
CHANGED