mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	spdx (#581)
Co-authored-by: techknowlogick <hello@techknowlogick.com> Co-committed-by: techknowlogick <hello@techknowlogick.com>
This commit is contained in:
		 techknowlogick
					techknowlogick
				
			
				
					committed by
					
						 techknowlogick
						techknowlogick
					
				
			
			
				
	
			
			
			 techknowlogick
						techknowlogick
					
				
			
						parent
						
							2d57e07dc7
						
					
				
				
					commit
					b868d30434
				
			| @@ -1,13 +1,12 @@ | ||||
| // Copyright 2020 The Gitea Authors. All rights reserved. | ||||
| // Use of this source code is governed by a MIT-style | ||||
| // license that can be found in the LICENSE file. | ||||
| // SPDX-License-Identifier: MIT | ||||
|  | ||||
| package git | ||||
|  | ||||
| import ( | ||||
| 	"fmt" | ||||
| 	"io/ioutil" | ||||
| 	"net/url" | ||||
| 	"os" | ||||
|  | ||||
| 	"code.gitea.io/tea/modules/utils" | ||||
|  | ||||
| @@ -53,7 +52,7 @@ func readSSHPrivKey(keyFile string, passwordCallback pwCallback) (sig ssh.Signer | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	sshKey, err := ioutil.ReadFile(keyFile) | ||||
| 	sshKey, err := os.ReadFile(keyFile) | ||||
| 	if err != nil { | ||||
| 		return nil, fmt.Errorf("can not read ssh key '%s'", keyFile) | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user