appveyor: fix version check
This commit is contained in:
parent
98df7916b2
commit
9392ae1d53
|
@ -36,9 +36,9 @@ install:
|
||||||
- IF NOT EXIST "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%"
|
- IF NOT EXIST "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%"
|
||||||
- 7z x -y "%MINGW_ARCHIVE%" > nul
|
- 7z x -y "%MINGW_ARCHIVE%" > nul
|
||||||
|
|
||||||
# build nim from our own branch - this to avoid the day-to-day churn and
|
# build nim from our own branch - this to avoid the day-to-day churn and
|
||||||
# regressions of the fast-paced Nim development while maintaining the
|
# regressions of the fast-paced Nim development while maintaining the
|
||||||
# flexibility to apply patches
|
# flexibility to apply patches
|
||||||
- SET "NEED_REBUILD="
|
- SET "NEED_REBUILD="
|
||||||
|
|
||||||
- IF NOT EXIST "Nim\\.git\\" (
|
- IF NOT EXIST "Nim\\.git\\" (
|
||||||
|
@ -55,8 +55,7 @@ install:
|
||||||
) ELSE (
|
) ELSE (
|
||||||
( CD Nim ) &
|
( CD Nim ) &
|
||||||
( git rev-parse HEAD > ..\\cur_ver.txt ) &
|
( git rev-parse HEAD > ..\\cur_ver.txt ) &
|
||||||
( fc ver.txt ..\\cur_ver.txt > nul ) &
|
( fc ver.txt ..\\cur_ver.txt || SET NEED_REBUILD=1 ) &
|
||||||
( IF NOT ERRORLEVEL == 0 SET NEED_REBUILD=1 ) &
|
|
||||||
( cd .. )
|
( cd .. )
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue