1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-21 13:22:02 +02:00

[Fix] Cadmus Tools Link (wasn't using Notes DIr)

This commit is contained in:
Ryan Greenup
2020-07-21 19:01:04 +10:00
parent ae4c3e8ce3
commit 7dd702620b

View File

@@ -6,12 +6,15 @@ if [ "$1" == "-h" ] || [ "$1" == "--help" ]; then
choose the output file and a relative MD link choose the output file and a relative MD link
will be generated" will be generated"
exit 0 exit 0
elif [[ $1 != '' ]]; then elif [[ $1 != '' ]]; then
NOTES_DIR=$1 NOTES_DIR=$1
else else
NOTE_DIR='./' NOTES_DIR='./'
fi fi
cd "${NOTES_DIR}"
main() { main() {