mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
26 lines
788 B
Bash
Executable File
26 lines
788 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This is a convenient way to build and test a plugin demo.
|
|
# It could be used to develop plugins too.
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
TEMP_PATH=~/src/plugin-tests
|
|
NEED_COMPILING=1
|
|
PLUGIN_PATH=~/src/plugin-abc
|
|
|
|
if [[ $NEED_COMPILING == 1 ]]; then
|
|
mkdir -p "$TEMP_PATH"
|
|
PLUGIN_NAME=$(echo "$PLUGIN_PATH" | awk -F/ '{print $NF}')
|
|
TEMP_PLUGIN_PATH="$TEMP_PATH/$PLUGIN_NAME"
|
|
|
|
echo "Copying from: $PLUGIN_PATH"
|
|
echo "To: $TEMP_PLUGIN_PATH"
|
|
|
|
rsync -a --delete "$PLUGIN_PATH/" "$TEMP_PLUGIN_PATH/"
|
|
|
|
npm install --prefix="$TEMP_PLUGIN_PATH" && yarn start --dev-plugins "$TEMP_PLUGIN_PATH"
|
|
else
|
|
yarn start --dev-plugins "$PLUGIN_PATH"
|
|
fi
|
|
|
|
# Add eg "--profile $HOME/.config/joplindev-desktop-1" to test with a different profile |