tool · inferred from evidence
cp
A command-line tool used as an alternative to File.write for atomic file replacement.
- Huge data loss when deploying refinery configuration without restarting
The reporter tracked the data loss down to how the config files were written: Ruby's File.write modifies the file in place while refinery's live-reload reads it. Switching the deployment script to `cp` instead of File.write fixed it, and tr