diff --git a/prebuild.sh b/prebuild.sh index fdca42987..a0e2db799 100755 --- a/prebuild.sh +++ b/prebuild.sh @@ -28,6 +28,15 @@ cmd_exists() { } +GITUSERNAME=$(git config --global --get user.name) +GITEMAIL=$(git config --global --get user.email) +if [ -z "$GITUSERNAME" ]; then + git config --global user.name "$(whoami)" +fi +if [ -z "$GITEMAIL" ]; then + git config --global user.email "$(whoami)@lbry.io" +fi + if $LINUX; then INSTALL="$SUDO apt-get install --no-install-recommends -y"