Skip to content

Commit

Permalink
Fix publish native script (#28037)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
padmaia and kodiakhq[bot] committed Aug 12, 2021
1 parent 69d6001 commit f067897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish-native.js
Expand Up @@ -37,7 +37,7 @@ const cwd = process.cwd()
)
execSync(
`npm publish ${path.join(nativePackagesDir, nativePackage)}${
gitref.contains('canary') ? ' --tag canary' : ''
gitref.includes('canary') ? ' --tag canary' : ''
}`
)
// lerna publish in next step will fail if git status is not clean
Expand Down

0 comments on commit f067897

Please sign in to comment.