Skip to content

Commit 45cd70b

Browse files
author
Forest Hoffman
committed
Fix bucket path
1 parent 990231a commit 45cd70b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export class TestPage {
158158
// If this is a Travis CI build, store the screenshots.
159159
if (process.env.CI_JOB_ID) {
160160
const makePublic = true;
161-
const bucketPath = `Travis-${process.env.CI_JOB_ID}/${fileName}`;
161+
const bucketPath = `/Travis-${process.env.CI_JOB_ID}/${fileName}`;
162162
let buf: Buffer = typeof img === "string" ? Buffer.from(img as string) : img;
163163
try {
164164
const url = await bucket.write(bucketPath, buf, makePublic);

0 commit comments

Comments
 (0)