mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
7 lines
383 B
Bash
Executable File
7 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
CLIENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
bash "$CLIENT_DIR/build.sh" && node "$CLIENT_DIR/build/main.js" --profile ~/Temp/TestNotes2 --stack-trace-enabled --log-level debug --env dev "$@"
|
|
|
|
# bash $CLIENT_DIR/build.sh && NODE_PATH="$CLIENT_DIR/build/" node build/main.js --profile ~/.config/joplin --stack-trace-enabled --log-level debug "$@" |