7
mirror of https://github.com/EEVengers/ThunderScope.git synced 2025-04-08 06:25:30 +00:00

Minor changes

This commit is contained in:
Ratan Varghese 2021-03-27 21:17:00 -04:00
parent d213537262
commit 85b982b261

View File

@ -2,13 +2,12 @@
// It has the same sandbox as a Chrome extension.
import * as fs from 'fs';
import * as path from 'path';
import { spawn } from 'child_process';
import { contextBridge, app } from 'electron';
const cwd = process.cwd();
const cpp_suffix_win = "\\build_cpp\\Release\\scope.exe";
const cpp_suffix_nix = "/build_cpp/Debug/scope";
const cpp_path = cwd + ((process.platform == "win32") ? cpp_suffix_win : cpp_suffix_nix);
const cpp_subdir = (process.platform == "win32") ? "Release" : "Debug"; //see `npm run make-cpp-win`
const cpp_path = path.join(process.cwd(), "build_cpp", cpp_subdir, "scope");
const cpp = spawn(cpp_path, ["-c"]);
var did_open = false;