()
| 163 | |
| 164 | |
| 165 | def backup_platformio_ini() -> None: |
| 166 | if not PLATFORMIO_INI.is_file(): |
| 167 | print( |
| 168 | f"measure-opt-ins: platformio.ini not found at {PLATFORMIO_INI}", |
| 169 | file=sys.stderr, |
| 170 | ) |
| 171 | sys.exit(2) |
| 172 | shutil.copyfile(PLATFORMIO_INI, PLATFORMIO_INI_BACKUP) |
| 173 | |
| 174 | |
| 175 | def restore_platformio_ini(keep_backup: bool) -> None: |