Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
improve variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
SupaJoon committed Oct 31, 2023
1 parent 7cbe8a2 commit 27b550a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/deploy/deploy-production.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ const evergreenDeploy = async () => {
// Print all commits between the last tag and the current commit
console.log(`Commit messages:\n${commitMessages}`);

const { value: shouldCreateAndPushTag } = await prompts({
const { value: shouldCreateTagAndPush } = await prompts({
type: "confirm",
name: "value",
message: "Are you sure you want to deploy to production?",
});

if (shouldCreateAndPushTag) {
if (shouldCreateTagAndPush) {
createTagAndPush();
}
} catch (err) {
Expand Down

0 comments on commit 27b550a

Please sign in to comment.