Skip to content

Commit d970c9c

Browse files
committed
update log location
1 parent 90e8e0d commit d970c9c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/jetbrains-release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ jobs:
337337
uses: actions/upload-artifact@v4
338338
with:
339339
name: core-logs-${{ matrix.platform }}-${{ matrix.arch }}
340-
path: binary/.continue/logs/core.log
340+
path: ~/.continue/logs/core.log
341341

342342
# Run tests and upload a code coverage report
343343
test:

binary/test/binary.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe("Test Suite", () => {
8383
fs.chmodSync(binaryPath, 0o755);
8484
console.log("Execute permissions set for the binary");
8585

86-
if (false && platform === "darwin") {
86+
if (platform === "darwin") {
8787
const indexNodePath = path.join(binaryDir, "index.node");
8888
const filesToUnquarantine = [binaryPath, indexNodePath];
8989

@@ -118,6 +118,7 @@ describe("Test Suite", () => {
118118
subprocess = spawn(binaryPath, {
119119
env: { ...process.env, CONTINUE_GLOBAL_DIR },
120120
});
121+
console.log("Successfully spawned subprocess");
121122
} catch (error) {
122123
console.error("Error spawning subprocess:", error);
123124
throw error;

0 commit comments

Comments
 (0)