1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/CliClient/run.sh

7 lines
383 B
Bash
Raw Normal View History

2017-06-06 00:00:02 +02:00
#!/bin/bash
2017-06-26 00:20:07 +02:00
set -e
CLIENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2017-08-03 19:48:14 +02:00
2017-11-08 23:39:07 +02: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 20:39:08 +02:00
# bash $CLIENT_DIR/build.sh && NODE_PATH="$CLIENT_DIR/build/" node build/main.js --profile ~/.config/joplin --stack-trace-enabled --log-level debug "$@"