(bytes)
| 13647 | warnings.push('Local merge conflicts detected in /opt/pwnagotchi'); |
| 13648 | } else if (gitStatus.is_dirty) { |
| 13649 | const n = (gitStatus.modified_files || []).length; |
| 13650 | warnings.push(`${n} local change${n === 1 ? '' : 's'} in /opt/pwnagotchi`); |
| 13651 | } |
| 13652 | if (gitStatus.has_stash) { |
| 13653 | warnings.push(`${gitStatus.stash_entries} stash ${gitStatus.stash_entries === 1 ? 'entry' : 'entries'} present`); |
| 13654 | } |
| 13655 | if (gitStatus.status_error) { |
| 13656 | warnings.push(gitStatus.status_error); |
| 13657 | } |
| 13658 | _setPwnUpdateWarnings(warnings); |
no outgoing calls
no test coverage detected