Skip to content

Commit ad8c5ee

Browse files
committed
Merge pull request #904 from dsyme/fix-ci-build-1
Don't clobber F# SDK during CI build
2 parents a458989 + f4cf7e3 commit ad8c5ee

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

appveyor-build.cmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,8 @@ if '%TEST_VS%' == '1' (
294294

295295
@echo on
296296
call src\update.cmd release -ngen
297-
call vsintegration\update-vsintegration.cmd release
297+
REM This clobbers the installed F# SDK on the machine
298+
REM call vsintegration\update-vsintegration.cmd release
298299
pushd tests
299300

300301
@echo on

jenkins-build.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ goto :USAGE
2222

2323
echo Usage:
2424
echo Builds the source tree using a specific configuration
25-
echo appveyor-build.cmd ^<debug^|release^>
25+
echo jenkins-build.cmd ^<debug^|release^>
2626
exit /b 1
2727

2828
:ARGUMENTS_OK

0 commit comments

Comments
 (0)