| Server IP : 85.155.190.233 / Your IP : 216.73.216.103 Web Server : nginx/1.24.0 System : Linux antigravity-cli 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64 User : wp-moonbloom ( 1001) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/node_modules/@google/gemini-cli/bundle/ |
Upload File : |
const require = (await import('node:module')).createRequire(import.meta.url); const __chunk_filename = (await import('node:url')).fileURLToPath(import.meta.url); const __chunk_dirname = (await import('node:path')).dirname(__chunk_filename);
import {
require_execAsync
} from "./chunk-5AUYMPVF.js";
import {
esm_exports,
init_esm
} from "./chunk-IUUIT4SU.js";
import {
__commonJS,
__toCommonJS
} from "./chunk-34MYV7JD.js";
// node_modules/@opentelemetry/resources/build/src/detectors/platform/node/machine-id/getMachineId-darwin.js
var require_getMachineId_darwin = __commonJS({
"node_modules/@opentelemetry/resources/build/src/detectors/platform/node/machine-id/getMachineId-darwin.js"(exports) {
Object.defineProperty(exports, "__esModule", { value: true });
exports.getMachineId = void 0;
var execAsync_1 = require_execAsync();
var api_1 = (init_esm(), __toCommonJS(esm_exports));
async function getMachineId() {
try {
const result = await (0, execAsync_1.execAsync)('ioreg -rd1 -c "IOPlatformExpertDevice"');
const idLine = result.stdout.split("\n").find((line) => line.includes("IOPlatformUUID"));
if (!idLine) {
return void 0;
}
const parts = idLine.split('" = "');
if (parts.length === 2) {
return parts[1].slice(0, -1);
}
} catch (e) {
api_1.diag.debug(`error reading machine id: ${e}`);
}
return void 0;
}
exports.getMachineId = getMachineId;
}
});
export default require_getMachineId_darwin();