Skip to content

Commit

Permalink
Fixed paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Bernier committed Apr 18, 2024
1 parent 49f1f6d commit 1cb8fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/merge-samples/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const fs = require('fs');
const path = require('path');

const samplesDir = path.join(__dirname, '..', '..', '..', 'samples');
const outputDir = path.join(__dirname, '..', '..', '..', '.metadata');
const samplesDir = '../../../samples';
const outputDir = '../../../.metadata';
const outputFile = path.join(outputDir, 'samples.json');

async function readSampleJson(filePath) {
Expand Down

0 comments on commit 1cb8fbf

Please sign in to comment.