We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 759c6c4 commit c9e3eeeCopy full SHA for c9e3eee
1 file changed
automated_packaging/common_functions.pm
@@ -22,10 +22,12 @@ sub get_microsoft_email {
22
23
sub get_git_name {
24
my $git_name = `git config user.name`;
25
+ # Strip trailing newline
26
+ chomp $git_name;
27
if ($git_name eq "") {
28
die "You must set your git name using 'git config user.name \"Your name Here\"'";
29
}
- return $microsoft_email;
30
+ return $git_name;
31
32
33
0 commit comments