mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	Merge pull request #12903 from justinmk/checkcores
lua/check_cores(): check uname instead of TRAVIS_OS_NAME
This commit is contained in:
		| @@ -345,7 +345,7 @@ function module.check_cores(app, force) | |||||||
|     exc_re = { os.getenv('NVIM_TEST_CORE_EXC_RE'), local_tmpdir } |     exc_re = { os.getenv('NVIM_TEST_CORE_EXC_RE'), local_tmpdir } | ||||||
|     db_cmd = os.getenv('NVIM_TEST_CORE_DB_CMD') or gdb_db_cmd |     db_cmd = os.getenv('NVIM_TEST_CORE_DB_CMD') or gdb_db_cmd | ||||||
|     random_skip = os.getenv('NVIM_TEST_CORE_RANDOM_SKIP') |     random_skip = os.getenv('NVIM_TEST_CORE_RANDOM_SKIP') | ||||||
|   elseif os.getenv('TRAVIS_OS_NAME') == 'osx' then |   elseif 'darwin' == module.uname() then | ||||||
|     initial_path = '/cores' |     initial_path = '/cores' | ||||||
|     re = nil |     re = nil | ||||||
|     exc_re = { local_tmpdir } |     exc_re = { local_tmpdir } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Thomas Vigouroux
					Thomas Vigouroux