mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			312 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			312 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Copy the original tesseract-ocr files to the volume directory without overwriting existing files
 | 
						|
echo "Copying original files without overwriting existing files"
 | 
						|
mkdir -p /usr/share/tesseract-ocr
 | 
						|
cp -rn /usr/share/tesseract-ocr-original/* /usr/share/tesseract-ocr
 | 
						|
 | 
						|
# Run the main command
 | 
						|
exec "$@" |