We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d989d9c commit 9ff2370Copy full SHA for 9ff2370
.cppsm/travis-ci
@@ -7,9 +7,11 @@ export PATH="$PWD/bin:$PATH"
7
8
# git config
9
10
-git config --global core.autocrlf false
11
-git config --global user.email "[email protected]"
12
-git config --global user.name "CI script"
+if [ "$TRAVIS" = true ]; then
+ git config --global core.autocrlf false
+ git config --global user.email "[email protected]"
13
+ git config --global user.name "CI script"
14
+fi
15
16
# Run tests
17
0 commit comments