1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-26 18:58:21 +02:00
joplin/CliClient/build.sh

9 lines
314 B
Bash
Raw Normal View History

2017-06-25 17:30:44 +01:00
#!/bin/bash
2017-07-18 18:04:47 +00:00
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2017-11-03 18:39:08 +00:00
BUILD_DIR="$ROOT_DIR/build"
2017-06-25 17:30:44 +01:00
rsync -a --exclude "node_modules/" "$ROOT_DIR/app/" "$BUILD_DIR/"
2017-12-14 18:12:14 +00:00
rsync -a --delete "$ROOT_DIR/../ReactNativeClient/lib/" "$BUILD_DIR/lib/"
2017-11-03 18:39:08 +00:00
cp "$ROOT_DIR/package.json" "$BUILD_DIR"
2017-12-04 17:55:06 +00:00
chmod 755 "$BUILD_DIR/main.js"