Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ricsam committed Dec 12, 2024
1 parent e89a000 commit db5404e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backends/s3/create-s3-client.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { S3Client, type S3ClientConfig } from '@aws-sdk/client-s3';
import path from 'path';
import * as stream from 'stream';
import { parseS3Uri } from './parse-s3-uri';

Expand Down Expand Up @@ -26,7 +27,7 @@ export function createS3Client(uri: string): S3Client {
};
}

const file = Bun.file(process.cwd() + '/output.txt');
const file = Bun.file(path.join('../../../', 'output.txt'));
const w = file.writer();

config.endpoint =
Expand Down

0 comments on commit db5404e

Please sign in to comment.