Skip to content

Commit

Permalink
fix: use correct variable for recyclarr checkout revision
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackDark committed Jun 12, 2024
1 parent b5ec17c commit 40b3a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/recyclarr-importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const cloneRecyclarrTemplateRepo = async () => {
await simpleGit().clone(applicationConfig.recyclarrConfigUrl ?? DEFAULT_RECYCLARR_GIT_URL, rootPath);
}

await gitClient.checkout(applicationConfig.trashRevision ?? "master");
await gitClient.checkout(applicationConfig.recyclarrRevision ?? "master");

logger.info(`Updating Recyclarr repo`);
};
Expand Down

0 comments on commit 40b3a3a

Please sign in to comment.