mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-05 07:20:12 +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 "$@"
|