Skip to content

Commit bca91ae

Browse files
committed
fix plugin copy source path
1 parent 87a0238 commit bca91ae

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

ct/immich.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,12 @@ EOF
204204

205205
# plugins
206206
cd "$SRC_DIR"
207-
$STD mise trust
208207
export MISE_TRUSTED_CONFIG_PATHS="$SRC_DIR"/mise.toml
209208
export MISE_DISABLE_TOOLS=github:jellyfin/jellyfin-ffmpeg
210209
$STD mise //:plugins
211210
mkdir -p "$PLUGIN_DIR"
212-
cp -r ./dist "$PLUGIN_DIR"/dist
213-
cp ./manifest.json "$PLUGIN_DIR"
211+
cp -r ./packages/plugin-core/dist "$PLUGIN_DIR"/dist
212+
cp ./packages/plugin-core/manifest.json "$PLUGIN_DIR"
214213
msg_ok "Updated Immich server, web, cli and plugins"
215214

216215
cd "$SRC_DIR"/machine-learning

install/immich-install.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,13 +343,12 @@ cp LICENSE "$APP_DIR"
343343

344344
# plugins
345345
cd "$SRC_DIR"
346-
$STD mise trust
347346
export MISE_TRUSTED_CONFIG_PATHS="$SRC_DIR"/mise.toml
348347
export MISE_DISABLE_TOOLS=github:jellyfin/jellyfin-ffmpeg
349348
$STD mise //:plugins
350349
mkdir -p "$PLUGIN_DIR"
351-
cp -r ./dist "$PLUGIN_DIR"/dist
352-
cp ./manifest.json "$PLUGIN_DIR"
350+
cp -r ./packages/plugin-core/dist "$PLUGIN_DIR"/dist
351+
cp ./packages/plugin-core/manifest.json "$PLUGIN_DIR"
353352
msg_ok "Installed Immich Server, Web and Plugin Components"
354353

355354
cd "$SRC_DIR"/machine-learning

0 commit comments

Comments
 (0)