Skip to content

Commit 45683ff

Browse files
author
Kirill
committed
Added OS check for Make command
1 parent 1628b78 commit 45683ff

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

updater.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
VIM_DOWNLOAD_PAGE = "https://www.vim.org/download.php#pc"
2727
VIM_REPO = "https://github.com/vim/vim.git"
2828

29-
isMakeInstalled = check_make_status()
29+
if OS_TYPE == "win":
30+
pass
31+
else:
32+
isMakeInstalled = check_make_status()
3033

3134
try:
3235
GIT_STATUS = check_git_on_device()

0 commit comments

Comments
 (0)