mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	
		
			
	
	
		
			7 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			7 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/sh -eu
							 | 
						||
| 
								 | 
							
								old_version="$1"
							 | 
						||
| 
								 | 
							
								new_version="$2"
							 | 
						||
| 
								 | 
							
								sed -i meson.build -e "s/version: '$old_version'/version: '$new_version'/g"
							 | 
						||
| 
								 | 
							
								git add meson.build
							 | 
						||
| 
								 | 
							
								git commit -m "Update version to $new_version"
							 |