New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@gauseen/gum

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gauseen/gum - npm Package Compare versions

Comparing version

to
1.0.4

2

package.json
{
"name": "@gauseen/gum",
"version": "1.0.3",
"version": "1.0.4",
"description": "git multiple user config manager",

@@ -5,0 +5,0 @@ "bin": "./bin/index.js",

@@ -52,2 +52,6 @@ # Git multiple user config manager

### v1.0.4
- fix: support user.name contain space
### v1.0.3

@@ -54,0 +58,0 @@

@@ -103,5 +103,6 @@ const shell = require('shelljs');

if (shell.exec(`git config ${g} user.name ${user.name}`).code !== 0) {
if (shell.exec(`git config ${g} user.name "${user.name}"`).code !== 0) {
shell.echo('Error: Git config user.name failed');
}
if (shell.exec(`git config ${g} user.email ${user.email}`).code !== 0) {

@@ -108,0 +109,0 @@ shell.echo('Error: Git config user.email failed');