mirror of
				https://github.com/Xahau/xahaud.git
				synced 2025-11-04 02:35:48 +00:00 
			
		
		
		
	* docker container definitions for package building * cmake targets for building packages * initial gitlab CI + artifactory integration
		
			
				
	
	
		
			21 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
set -e
 | 
						|
 | 
						|
case "$1" in
 | 
						|
    install|upgrade)
 | 
						|
    ;;
 | 
						|
 | 
						|
    abort-upgrade)
 | 
						|
    ;;
 | 
						|
 | 
						|
    *)
 | 
						|
        echo "preinst called with unknown argument \`$1'" >&2
 | 
						|
        exit 1
 | 
						|
    ;;
 | 
						|
esac
 | 
						|
 | 
						|
 | 
						|
#DEBHELPER#
 | 
						|
 | 
						|
exit 0
 |