Socket
Socket
Sign inDemoInstall

initials

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

initials - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

14

bin/authorize-push.js

@@ -9,7 +9,15 @@ #!/usr/bin/env node

if (!(process.env.CI && GH_TOKEN && repo)) {
console.log('[authorize-push] ignodered because condition not fullfillled (process.env.CI: %s, GH_TOKEN: %s, repo: %s)', !!process.env.CI, !!GH_TOKEN, !!repo)
process.exit(1)
}
exec('git remote set-url origin ' + repo.replace('https://', 'https://' + GH_TOKEN + '@') + ' && ')
exec('git config user.email o.gasidlo@gmail.com && ')
exec('git config user.name "zoepage"')
var commands = [
'git remote set-url origin ' + repo.replace('https://', 'https://' + GH_TOKEN + '@') + ' && ',
'git config user.email o.gasidlo@gmail.com && ',
'git config user.name "zoepage"'
]
commands.forEach(function (command) {
console.log('[authorize-push] %s', command)
exec(command)
})

@@ -47,3 +47,3 @@ {

},
"version": "2.1.1"
"version": "2.1.2"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc