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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55adb4b5b957ffa41629f5d0cf48961096230993a9654f1f85d956a845773043
4
- data.tar.gz: 41d97316c383dae8178b9730d2a3712d1669870180e01d55a966fbc3e79afbbc
3
+ metadata.gz: 84376c8818b9858755d81cc83b6e7106b84990584a602367057060f3b5344c1f
4
+ data.tar.gz: 27ebca7e74ce609ee428238c26a2c8bdcf6c828b03e192a17e719e446c0e1b48
5
5
  SHA512:
6
- metadata.gz: 5d062ded2d5c0a87aa28864abd1c74a3d8aacf075f43fba8bd6267a5adcfeb0e74498df3583b5713921901cfbbd0ec96f57986a71dbeb70c48649541404dd484
7
- data.tar.gz: afa0809aa907d8e9e508f257d20dd05db8e4c0ddad7dd9aeb989ec6cf135c4df48fcce0a35dda6bfbceb2ba7d1a4d6ad1a658342b026d044bb3262b2ed1d110c
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
- FileUtils.touch(File.join(marker_dir, pack_name.to_s))
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Legion
4
- VERSION = '1.6.45'
4
+ VERSION = '1.6.46'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legionio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.45
4
+ version: 1.6.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity