summaryrefslogtreecommitdiff
path: root/worker/scripts/checkout_ci.ts
diff options
context:
space:
mode:
Diffstat (limited to 'worker/scripts/checkout_ci.ts')
-rwxr-xr-xworker/scripts/checkout_ci.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/worker/scripts/checkout_ci.ts b/worker/scripts/checkout_ci.ts
index fb71a16..337aae1 100755
--- a/worker/scripts/checkout_ci.ts
+++ b/worker/scripts/checkout_ci.ts
@@ -22,7 +22,7 @@ const run = Date.now().toString();
const eitherJob = getRequiredEnvVars(['remote', 'refname', 'rev']).mapRight(
(baseArgs) =>
<CheckoutCiJob>{
- type: 'checkout_ci.ts',
+ type: 'checkout_ci.js',
arguments: {
...baseArgs,
run,
@@ -42,7 +42,7 @@ await LogMetricTraceable.ofLogTraceable(_logJob)
tEitherJob.get().flatMapAsync((ciJob) => {
const wd = getWorkingDirectoryForCiJob(ciJob);
const fetchPackageJob = <FetchCodeJob>{
- type: 'fetch_code.ts',
+ type: 'fetch_code.js',
arguments: {
remoteUrl: ciJob.arguments.remote,
checkout: ciJob.arguments.rev,