mirror of
				https://github.com/Mikaela/Limnoria.git
				synced 2025-11-04 01:27:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			454 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			454 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# Use this script to make commits. It will automatically update the version
 | 
						|
# string to have a datetime stamp, prior to committing.
 | 
						|
# All arguments get passed to git commit, so of course, use the -a option so that 
 | 
						|
# the version change gets added to the commit.
 | 
						|
echo "Updating version..."
 | 
						|
perl -pi -e  "s/^version\s*=\s*['\"]([\S]+)[ '\"].*/version = '\1 ($( date -Iseconds ))'/" src/version.py
 | 
						|
if [ "$?" -eq "0" ]; then
 | 
						|
    git commit $@
 | 
						|
fi
 |