mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 11:12:15 +03:00
2d413129a7
There were various mistakes in the shell scripts, such as lack of quoting; they would break them immediately e.g. if `BIN_DIR` contained a space. Pointed out by `shellcheck`.
8 lines
129 B
Bash
Executable File
8 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
# Creates the database if needed
|
|
|
|
|
|
BIN_DIR=$(dirname "$0")
|
|
|
|
"${BIN_DIR}"/bin/plausible eval Plausible.Release.createdb
|