pinokiod 3.291.0 → 3.292.0

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.
@@ -100,6 +100,8 @@ async function readXcodeSelectVersion(exec) {
100
100
  return { valid: false, reason: 'xcode-select --version failed' }
101
101
  }
102
102
 
103
+ console.log('xcode-select --version', result)
104
+
103
105
  const match = result && result.stdout && /xcode-select version\s+(\d+)/i.exec(result.stdout)
104
106
  if (!match) {
105
107
  return { valid: false, reason: 'unable to parse xcode-select version' }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.291.0",
3
+ "version": "3.292.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {