Skip to content

Commit

Permalink
update log location
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Sep 21, 2024
1 parent 90e8e0d commit d970c9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jetbrains-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: core-logs-${{ matrix.platform }}-${{ matrix.arch }}
path: binary/.continue/logs/core.log
path: ~/.continue/logs/core.log

# Run tests and upload a code coverage report
test:
Expand Down
3 changes: 2 additions & 1 deletion binary/test/binary.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe("Test Suite", () => {
fs.chmodSync(binaryPath, 0o755);
console.log("Execute permissions set for the binary");

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

Expand Down Expand Up @@ -118,6 +118,7 @@ describe("Test Suite", () => {
subprocess = spawn(binaryPath, {
env: { ...process.env, CONTINUE_GLOBAL_DIR },
});
console.log("Successfully spawned subprocess");
} catch (error) {
console.error("Error spawning subprocess:", error);
throw error;
Expand Down

0 comments on commit d970c9c

Please sign in to comment.