mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
668eee97fa
Update shellcheck and shfmt to the latest version. Fixes <https://github.com/koreader/koreader/issues/5152>. Btw, you can apply shellcheck suggestions with a command like: ``` shellcheck --include=SC2250 -f diff *.sh | git apply ```
39 lines
823 B
Bash
Executable File
39 lines
823 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 [ -z "${1}" ]; then
|
|
ARGS="${HOME}"
|
|
else
|
|
if [ $# -eq 1 ] && [ -e "$(pwd)/${1}" ]; then
|
|
ARGS="$(pwd)/${1}"
|
|
else
|
|
ARGS="${*}"
|
|
fi
|
|
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}
|
|
|