mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
10 lines
396 B
Bash
Executable File
10 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
BUILD_DIR="$ROOT_DIR/build"
|
|
|
|
rsync -a --exclude "node_modules/" "$ROOT_DIR/app/" "$BUILD_DIR/"
|
|
rsync -a --delete "$ROOT_DIR/../ReactNativeClient/lib/" "$BUILD_DIR/lib/"
|
|
rsync -a --delete "$ROOT_DIR/../ReactNativeClient/locales/" "$BUILD_DIR/locales/"
|
|
cp "$ROOT_DIR/package.json" "$BUILD_DIR"
|
|
chmod 755 "$BUILD_DIR/main.js" |