| 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,
__require,
__toCommonJS
} from "./chunk-34MYV7JD.js";
// node_modules/@opentelemetry/resources/build/src/detectors/platform/node/machine-id/getMachineId-win.js
var require_getMachineId_win = __commonJS({
"node_modules/@opentelemetry/resources/build/src/detectors/platform/node/machine-id/getMachineId-win.js"(exports) {
Object.defineProperty(exports, "__esModule", { value: true });
exports.getMachineId = void 0;
var process = __require("process");
var execAsync_1 = require_execAsync();
var api_1 = (init_esm(), __toCommonJS(esm_exports));
async function getMachineId() {
const args = "QUERY HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Cryptography /v MachineGuid";
let command = "%windir%\\System32\\REG.exe";
if (process.arch === "ia32" && "PROCESSOR_ARCHITEW6432" in process.env) {
command = "%windir%\\sysnative\\cmd.exe /c " + command;
}
try {
const result = await (0, execAsync_1.execAsync)(`${command} ${args}`);
const parts = result.stdout.split("REG_SZ");
if (parts.length === 2) {
return parts[1].trim();
}
} catch (e) {
api_1.diag.debug(`error reading machine id: ${e}`);
}
return void 0;
}
exports.getMachineId = getMachineId;
}
});
export default require_getMachineId_win();