mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
dc964f3941
platform: do not pass a directory on the command line. The home directory will be properly set by Device.home_dir. It was sometimes crashing when opened with no args. Fixes: #7049
21 lines
390 B
Bash
Executable File
21 lines
390 B
Bash
Executable File
#!/bin/sh
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
# working directory of koreader
|
|
KOREADER_DIR="${0%/*}"
|
|
|
|
# we're always starting from our working directory
|
|
cd "${KOREADER_DIR}" || exit
|
|
|
|
# export load library path
|
|
export LD_LIBRARY_PATH=${KOREADER_DIR}/libs:${LD_LIBRARY_PATH}
|
|
|
|
RETURN_VALUE=85
|
|
|
|
while [ ${RETURN_VALUE} -eq 85 ]; do
|
|
./reader.lua "$@"
|
|
RETURN_VALUE=$?
|
|
done
|
|
|
|
exit ${RETURN_VALUE}
|