mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +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
35 lines
753 B
Bash
Executable File
35 lines
753 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
# writable storage: ${HOME}/.config/koreader.
|
|
export KO_MULTIUSER=1
|
|
|
|
if [ $# -eq 1 ] && [ -e "$(pwd)/${1}" ]; then
|
|
ARGS="$(pwd)/${1}"
|
|
else
|
|
ARGS="${*}"
|
|
fi
|
|
|
|
# working directory of koreader
|
|
KOREADER_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/../lib/koreader"
|
|
|
|
# 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 "${ARGS}"
|
|
RETURN_VALUE=$?
|
|
# do not restart with saved arguments
|
|
ARGS="${HOME}"
|
|
done
|
|
|
|
# remove the flag to avoid emulator confusion
|
|
export -n KO_MULTIUSER
|
|
|
|
exit ${RETURN_VALUE}
|
|
|