From 50ed26590f578de472c5419b8c427138693d9379 Mon Sep 17 00:00:00 2001 From: Chris de Graaf Date: Mon, 24 Sep 2018 14:52:31 -0500 Subject: [PATCH] Add explanation of Git configuration step --- .appveyor.yml | 1 + .travis.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index e65a6ce..5abf512 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -20,6 +20,7 @@ build_script: - echo "%JL_BUILD_SCRIPT%" - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" test_script: + # Git configuration is required to make commits in generated packages. - git config --global user.name "AppVeyor" - git config --global user.email "appveyor@example.com" - echo "%JL_TEST_SCRIPT%" diff --git a/.travis.yml b/.travis.yml index 4339ed3..89a1971 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ matrix: notifications: email: false before_script: + # Git configuration is required to make commits in generated packages. - git config --global user.name "Travis" - git config --global user.email "travis@example.com" after_success: