mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	Merge pull request #1282 from return42/fix-git-version
[fix] version.py: git format '%cs' is not downward compatible
This commit is contained in:
		
						commit
						0ce9d9e893
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -58,7 +58,7 @@ def get_git_url_and_branch(): | |||
| 
 | ||||
| 
 | ||||
| def get_git_version(): | ||||
|     git_commit_date_hash = subprocess_run(r"git show -s --format='%cs-%h'").replace("-", ".", 2) | ||||
|     git_commit_date_hash = subprocess_run(r"git show -s --date='format:%Y.%m.%d' --format='%cd-%h'") | ||||
|     tag_version = git_version = git_commit_date_hash | ||||
| 
 | ||||
|     # add "-dirty" suffix if there are uncommited changes except searx/settings.yml | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Markus Heiser
						Markus Heiser