20 lines
		
	
	
		
			No EOL
		
	
	
		
			310 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			No EOL
		
	
	
		
			310 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
if [ $SC_DEBUG ]; then
 | 
						|
    SC_LOGGER_LEVEL=0
 | 
						|
    echo "*** SC DEBUG ***"
 | 
						|
fi
 | 
						|
 | 
						|
. $SC_LIB/variables
 | 
						|
. $SC_LIB/headers
 | 
						|
. $SC_LIB/logger
 | 
						|
. $SC_LIB/manipulation
 | 
						|
. $SC_LIB/privileges
 | 
						|
 | 
						|
for l in $SC_INCLUDE_LIBS; do
 | 
						|
    [ -f "$SC_LIB/$l" ] || continue
 | 
						|
    LOGD "including $l..."
 | 
						|
    . $SC_LIB/$l
 | 
						|
done |