kopia lustrzana https://github.com/OpenDroneMap/ODM
				
				
				
			
		
			
				
	
	
		
			11 wiersze
		
	
	
		
			303 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			11 wiersze
		
	
	
		
			303 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
#!/bin/bash
 | 
						|
 | 
						|
RUNPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 | 
						|
if [ -e $RUNPATH/venv ]; then
 | 
						|
    source $RUNPATH/venv/bin/activate
 | 
						|
fi
 | 
						|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$RUNPATH/SuperBuild/install/lib
 | 
						|
export DYLD_LIBRARY_PATH=$RUNPATH/SuperBuild/install/lib
 | 
						|
python3 $RUNPATH/run.py "$@"
 | 
						|
 |