@@ -15105,22 +15105,22 @@ exports.configureGitAuthentication = configureGitAuthentication;
1510515105function setCommitterName ( committerName ) {
1510615106 return __awaiter ( this , void 0 , void 0 , function * ( ) {
1510715107 core . debug ( `Setting Git committer name globally as '${ committerName } '...` ) ;
15108- yield execGit ( "config" , "--global" , "user.name" , `" ${ committerName } "` ) ;
15108+ yield execGit ( "config" , "--global" , "user.name" , committerName ) ;
1510915109 core . debug ( "Git committer name was set successfully." ) ;
1511015110 } ) ;
1511115111}
1511215112exports . setCommitterName = setCommitterName ;
1511315113function setCommitterEmail ( committerEmail ) {
1511415114 return __awaiter ( this , void 0 , void 0 , function * ( ) {
1511515115 core . debug ( `Setting Git committer email globally as '${ committerEmail } '...` ) ;
15116- yield execGit ( "config" , "--global" , "user.email" , `" ${ committerEmail } "` ) ;
15116+ yield execGit ( "config" , "--global" , "user.email" , committerEmail ) ;
1511715117 core . debug ( "Git committer email was set successfully." ) ;
1511815118 } ) ;
1511915119}
1512015120exports . setCommitterEmail = setCommitterEmail ;
1512115121function addCredentialHelper ( credentialHelper ) {
1512215122 return __awaiter ( this , void 0 , void 0 , function * ( ) {
15123- yield execGit ( "config" , "--global" , "--add" , "credential.helper" , `" ${ credentialHelper } "` ) ;
15123+ yield execGit ( "config" , "--global" , "--add" , "credential.helper" , credentialHelper ) ;
1512415124 } ) ;
1512515125}
1512615126function execGit ( commandName , ...args ) {
0 commit comments