1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-17 18:44:45 +02:00
joplin/CliClient/run.sh

7 lines
383 B
Bash
Raw Normal View History

2017-06-05 23:00:02 +01:00
#!/bin/bash
2017-06-25 23:20:07 +01:00
set -e
CLIENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2017-08-03 17:48:14 +00:00
2017-11-08 21:39:07 +00:00
bash "$CLIENT_DIR/build.sh" && node "$CLIENT_DIR/build/main.js" --profile ~/Temp/TestNotes2 --stack-trace-enabled --log-level debug --env dev "$@"
2017-11-03 18:39:08 +00:00
# bash $CLIENT_DIR/build.sh && NODE_PATH="$CLIENT_DIR/build/" node build/main.js --profile ~/.config/joplin --stack-trace-enabled --log-level debug "$@"