File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def check_git_on_device():
1111def git_action (* args ):
1212 if len (args ) == 2 and args [0 ] == "pull" :
1313 pull_proc_out = check_output (["git" , args [0 ]], cwd = args [1 ])
14- if (pull_proc_out .decode ('utf-8' )).count ("Already up-to-date." ) == 1 :
14+ if (pull_proc_out .decode ('utf-8' )).count ("Already up-to-date." ) == 1 or ( pull_proc_out . decode ( 'utf-8' )). count ( "Already up to date." ) == 1 :
1515 return True
1616
1717 elif len (args ) == 3 and args [0 ] == "clone" :
Original file line number Diff line number Diff line change 1616from src .Utilities .installer import make_action
1717from src .Utilities .installer import check_make_status
1818
19- UPDATER_VER = "1.1.2 "
19+ UPDATER_VER = "1.1.3 "
2020GIT_DOWNLOAD_PAGE = "http://git-scm.com/"
2121VIM_DOWNLOAD_PAGE = "https://www.vim.org/download.php#pc"
2222VIM_REPO = "https://github.com/vim/vim.git"
You can’t perform that action at this time.
0 commit comments