1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ElectronClient/build.sh

13 lines
239 B
Bash
Raw Normal View History

2017-11-04 13:46:06 +02:00
#!/bin/bash
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
BUILD_DIR="$ROOT_DIR/app"
2017-11-04 13:46:06 +02:00
2017-12-14 20:12:14 +02:00
rsync -a --delete "$ROOT_DIR/../ReactNativeClient/lib/" "$BUILD_DIR/lib/"
2017-11-04 13:46:06 +02:00
2019-12-17 02:40:49 +02:00
cd "$ROOT_DIR/.."
npm run tsc
2017-11-15 01:05:35 +02:00
cd "$BUILD_DIR"
npm run compile