X-Git-Url: http://git.projectaon.org/?p=project-aon.git;a=blobdiff_plain;f=common%2Fscripts%2Fcopy-ebooks.sh;h=651c0c56b74466a311b0bb985b0e49c4ccde70a1;hp=3c39738277276dfb79238b5d5a797a21ea0d2994;hb=6df1169b0e3e8638309244e672fb9eb23fec0433;hpb=c6338dc3c2d3299fdf71c128a7b707d7a69762dd diff --git a/common/scripts/copy-ebooks.sh b/common/scripts/copy-ebooks.sh index 3c39738..651c0c5 100755 --- a/common/scripts/copy-ebooks.sh +++ b/common/scripts/copy-ebooks.sh @@ -11,19 +11,23 @@ if [ ! -d "$AONDIR" ]; then >&2 echo "Please set the AONDIR environment variable" - exit + exit 1 fi CURR_DIR=`pwd` +if [ "$AONDIR" -ef "$CURR_DIR" ]; then + >&2 echo "Current directory is the same as AONDIR: giving up" + exit 1 +fi + BASE_DIR="$AONDIR/common/epub" -book_db="$AONDIR/common/sqlite/bookcodes.db" for book in $@ do - row=($(sqlite3 -separator ' ' $book_db "select lang, series from bookcodes where book = '$book';")) + row=( $($AONDIR/common/scripts/list-book-info.sh $book) ) - lang=${row[0]} - series=${row[1]} + lang=${row[1]} + series=${row[2]} source_dir="$BASE_DIR/$book"