Skip to content

Commit

Permalink
chore: Fixed typo in constant name (#2094)
Browse files Browse the repository at this point in the history
Signed-off-by: mrickard <maurice@mauricerickard.com>
  • Loading branch information
mrickard committed Mar 21, 2024
1 parent 151615d commit 3b887d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/prepare-release.js
Expand Up @@ -15,7 +15,7 @@ const git = require('./git-commands')
const npm = require('./npm-commands')

const PROPOSED_NOTES_HEADER = 'Proposed Release Notes'
const FORCE_RUN_DEAFULT_REMOTE = 'origin'
const FORCE_RUN_DEFAULT_REMOTE = 'origin'

// Add command line options
program.addOption(
Expand Down Expand Up @@ -80,7 +80,7 @@ async function prepareReleaseNotes() {
stopOnError()
}

const remote = options.remote || FORCE_RUN_DEAFULT_REMOTE
const remote = options.remote || FORCE_RUN_DEFAULT_REMOTE
console.log('Using remote: ', remote)

try {
Expand Down

0 comments on commit 3b887d9

Please sign in to comment.