aboutsummaryrefslogtreecommitdiff
path: root/bin/get-data
diff options
context:
space:
mode:
authorJoris2023-02-08 10:33:51 +0100
committerJoris2023-02-08 10:33:51 +0100
commit0aa9ef160fe3362a85a6e9b678d1b65756c8e3a0 (patch)
tree7ebbc0ce06ab4c644e1a4045c5cdb6232735a7fc /bin/get-data
parent959c28f52e2ac1038f27110c88344fb321ed8e0e (diff)
Filter on read status
Diffstat (limited to 'bin/get-data')
-rwxr-xr-xbin/get-data23
1 files changed, 0 insertions, 23 deletions
diff --git a/bin/get-data b/bin/get-data
deleted file mode 100755
index 0fbbd2f..0000000
--- a/bin/get-data
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env bash
-set -euo pipefail
-cd $(dirname "$0")/..
-
-if [ "$#" == 1 ]; then
- BOOK_DIR="$1"
-else
- echo "usage: $0 path-to-book-directory"
- exit 1
-fi
-
-echo "const books = ["
-
-for METADATA in $(find "$BOOK_DIR" -name 'metadata.json'); do
- DIR=$(dirname "$METADATA")
- COVER=$(ls $DIR/cover.*)
-
- cat "$METADATA" | head -n -1
- echo ", \"cover\": \"$COVER\""
- echo "},"
-done
-
-echo "]"