1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-12 00:54:27 +02:00

fix install script missing quotation mark

This commit is contained in:
RyanGreenup
2021-03-05 18:43:45 +11:00
committed by GitHub
parent 3b5e202610
commit a797617a95

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
INSTALL_DIR="$HOME/.cadmus" INSTALL_DIR="$HOME/.cadmus"
BIN_DIR="$HOME/.local/bin/" BIN_DIR="$HOME/.local/bin/"
mkdir "${BIN_DIR} > /dev/null mkdir "${BIN_DIR}" > /dev/null
main () { main () {
me=`basename "$0"` me=`basename "$0"`