aboutsummaryrefslogtreecommitdiff
path: root/bin/view
diff options
context:
space:
mode:
Diffstat (limited to 'bin/view')
-rwxr-xr-xbin/view16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/view b/bin/view
deleted file mode 100755
index 4fd4efc..0000000
--- a/bin/view
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-set -euo pipefail
-cd $(dirname "$0")/..
-
-if [ "$#" == 2 ]; then
- BROWSER="$1"
- BOOK_DIR="$2"
-else
- echo "usage: $0 browser-cmd path-to-book-directory"
- exit 1
-fi
-
-TMP_DIR=$(mktemp --directory)
-cp public/* "$TMP_DIR"
-bin/get-books "$BOOK_DIR" > "$TMP_DIR/books.js"
-eval "$BROWSER $TMP_DIR/index.html"