Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 64535ea

Browse files
authored
Change ref back to meta (#933)
change back to meta branch
1 parent 7739583 commit 64535ea

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ USER docsworker-xlarge
7474
WORKDIR ${WORK_DIRECTORY}
7575

7676
# get shared.mk
77-
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/monorepo-pub-branches/makefiles/shared.mk -o shared.mk
77+
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/meta/makefiles/shared.mk -o shared.mk
7878

7979
# install snooty frontend and docs-tools
8080
RUN git clone -b v${SNOOTY_FRONTEND_VERSION} --depth 1 https://github.com/mongodb/snooty.git \

Dockerfile.enhanced

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ USER docsworker-xlarge
7474
WORKDIR ${WORK_DIRECTORY}
7575

7676
# get shared.mk
77-
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/monorepo-pub-branches/makefiles/shared.mk -o shared.mk
77+
RUN curl https://raw.githubusercontent.com/mongodb/docs-worker-pool/meta/makefiles/shared.mk -o shared.mk
7878

7979
# install snooty frontend and docs-tools
8080
RUN git clone -b v${SNOOTY_FRONTEND_VERSION} --depth 1 https://github.com/mongodb/snooty.git \

src/job/jobHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export abstract class JobHandler {
210210
? this.currJob.payload.directory
211211
: this.currJob.payload.repoName;
212212
await this._fileSystemServices.saveUrlAsFile(
213-
`https://raw.githubusercontent.com/mongodb/docs-worker-pool/monorepo-pub-branches/makefiles/Makefile.${makefileFileName}`,
213+
`https://raw.githubusercontent.com/mongodb/docs-worker-pool/meta/makefiles/Makefile.${makefileFileName}`,
214214
`repos/${getDirectory(this.currJob)}/Makefile`,
215215
{
216216
encoding: 'utf8',

tests/unit/job/productionJobHandler.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ describe('ProductionJobHandler Tests', () => {
120120
test('Execute throws error when Downloading makefile repo should update status', async () => {
121121
jobHandlerTestHelper.fileSystemServices.saveUrlAsFile
122122
.calledWith(
123-
`https://raw.githubusercontent.com/mongodb/docs-worker-pool/monorepo-pub-branches/makefiles/Makefile.${jobHandlerTestHelper.job.payload.repoName}`
123+
`https://raw.githubusercontent.com/mongodb/docs-worker-pool/meta/makefiles/Makefile.${jobHandlerTestHelper.job.payload.repoName}`
124124
)
125125
.mockImplementation(() => {
126126
throw new Error('Error while Downloading makefile');

0 commit comments

Comments
 (0)