Skip to content

Commit 77a1968

Browse files
committed
fix plugin copy source path
1 parent 908a26b commit 77a1968

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
@@ -339,13 +339,12 @@ cp LICENSE "$APP_DIR"
339339

340340
# plugins
341341
cd "$SRC_DIR"
342-
$STD mise trust
343342
export MISE_TRUSTED_CONFIG_PATHS="$SRC_DIR"/mise.toml
344343
export MISE_DISABLE_TOOLS=github:jellyfin/jellyfin-ffmpeg
345344
$STD mise //:plugins
346345
mkdir -p "$PLUGIN_DIR"
347-
cp -r ./dist "$PLUGIN_DIR"/dist
348-
cp ./manifest.json "$PLUGIN_DIR"
346+
cp -r ./packages/plugin-core/dist "$PLUGIN_DIR"/dist
347+
cp ./packages/plugin-core/manifest.json "$PLUGIN_DIR"
349348
msg_ok "Installed Immich Server, Web and Plugin Components"
350349

351350
cd "$SRC_DIR"/machine-learning

0 commit comments

Comments
 (0)