mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	Make sure both scripts/ can live side by side (#1264)
This commit is contained in:
		
							
								
								
									
										19
									
								
								scripts/generate-gitignores.go
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										19
									
								
								scripts/generate-gitignores.go
									
									
									
									
										vendored
									
									
								
							| @@ -1,4 +1,4 @@ | |||||||
| // +build !build | // +build ignore | ||||||
|  |  | ||||||
| package main | package main | ||||||
|  |  | ||||||
| @@ -17,17 +17,14 @@ import ( | |||||||
| 	"strings" | 	"strings" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	prefix      = "gitea-gitignore" |  | ||||||
| 	url         = "https://api.github.com/repos/github/gitignore/tarball" |  | ||||||
| 	destination = "" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func init() { |  | ||||||
| 	flag.StringVar(&destination, "dest", "options/gitignore/", "destination for the gitignores") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func main() { | func main() { | ||||||
|  | 	var ( | ||||||
|  | 		prefix      = "gitea-gitignore" | ||||||
|  | 		url         = "https://api.github.com/repos/github/gitignore/tarball" | ||||||
|  | 		destination = "" | ||||||
|  | 	) | ||||||
|  |  | ||||||
|  | 	flag.StringVar(&destination, "dest", "options/gitignore/", "destination for the gitignores") | ||||||
| 	flag.Parse() | 	flag.Parse() | ||||||
|  |  | ||||||
| 	file, err := ioutil.TempFile(os.TempDir(), prefix) | 	file, err := ioutil.TempFile(os.TempDir(), prefix) | ||||||
|   | |||||||
							
								
								
									
										24
									
								
								scripts/generate-licenses.go
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										24
									
								
								scripts/generate-licenses.go
									
									
									
									
										vendored
									
									
								
							| @@ -1,4 +1,4 @@ | |||||||
| // +build !build | // +build ignore | ||||||
|  |  | ||||||
| package main | package main | ||||||
|  |  | ||||||
| @@ -17,17 +17,14 @@ import ( | |||||||
| 	"strings" | 	"strings" | ||||||
| ) | ) | ||||||
|  |  | ||||||
| var ( |  | ||||||
| 	prefix      = "gitea-licenses" |  | ||||||
| 	url         = "https://api.github.com/repos/spdx/license-list/tarball" |  | ||||||
| 	destination = "" |  | ||||||
| ) |  | ||||||
|  |  | ||||||
| func init() { |  | ||||||
| 	flag.StringVar(&destination, "dest", "options/license/", "destination for the licenses") |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func main() { | func main() { | ||||||
|  | 	var ( | ||||||
|  | 		prefix      = "gitea-licenses" | ||||||
|  | 		url         = "https://api.github.com/repos/spdx/license-list/tarball" | ||||||
|  | 		destination = "" | ||||||
|  | 	) | ||||||
|  |  | ||||||
|  | 	flag.StringVar(&destination, "dest", "options/license/", "destination for the licenses") | ||||||
| 	flag.Parse() | 	flag.Parse() | ||||||
|  |  | ||||||
| 	file, err := ioutil.TempFile(os.TempDir(), prefix) | 	file, err := ioutil.TempFile(os.TempDir(), prefix) | ||||||
| @@ -73,9 +70,6 @@ func main() { | |||||||
| 			log.Fatalf("Failed to iterate archive. %s", err) | 			log.Fatalf("Failed to iterate archive. %s", err) | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		fmt.Println(hdr.Name) |  | ||||||
| 		fmt.Println(filepath.Ext(hdr.Name)) |  | ||||||
|  |  | ||||||
| 		if filepath.Ext(hdr.Name) != ".txt" { | 		if filepath.Ext(hdr.Name) != ".txt" { | ||||||
| 			continue | 			continue | ||||||
| 		} | 		} | ||||||
| @@ -88,8 +82,6 @@ func main() { | |||||||
| 			continue | 			continue | ||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		fmt.Println(path.Join(destination, strings.TrimSuffix(filepath.Base(hdr.Name), ".txt"))) |  | ||||||
|  |  | ||||||
| 		out, err := os.Create(path.Join(destination, strings.TrimSuffix(filepath.Base(hdr.Name), ".txt"))) | 		out, err := os.Create(path.Join(destination, strings.TrimSuffix(filepath.Base(hdr.Name), ".txt"))) | ||||||
|  |  | ||||||
| 		if err != nil { | 		if err != nil { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Thomas Boerger
					Thomas Boerger