fix(lazy): added error handling for bootstrap (#1001)
This commit is contained in:
		
							parent
							
								
									f5c919558b
								
							
						
					
					
						commit
						3e55ff1a83
					
				
							
								
								
									
										5
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										5
									
								
								init.lua
								
								
								
								
							|  | @ -209,7 +209,10 @@ vim.api.nvim_create_autocmd('TextYankPost', { | ||||||
| local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' | local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' | ||||||
| if not vim.loop.fs_stat(lazypath) then | if not vim.loop.fs_stat(lazypath) then | ||||||
|   local lazyrepo = 'https://github.com/folke/lazy.nvim.git' |   local lazyrepo = 'https://github.com/folke/lazy.nvim.git' | ||||||
|   vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath } |   local out = vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath } | ||||||
|  |   if vim.v.shell_error ~= 0 then | ||||||
|  |     error('Error cloning lazy.nvim:\n' .. out) | ||||||
|  |   end | ||||||
| end ---@diagnostic disable-next-line: undefined-field | end ---@diagnostic disable-next-line: undefined-field | ||||||
| vim.opt.rtp:prepend(lazypath) | vim.opt.rtp:prepend(lazypath) | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 Folke Lemaitre
						Folke Lemaitre