- plugin assets are now moved to zellij-utils/assets/plugins. updated specfile accordingly

OBS-URL: https://build.opensuse.org/package/show/utilities/zellij?expand=0&rev=46
This commit is contained in:
Soc Virnyl Estela 2022-12-11 04:37:49 +00:00 committed by Git OBS Bridge
parent 370320bdfc
commit 24a98e07f8
2 changed files with 3 additions and 2 deletions

View File

@ -17,6 +17,7 @@ Sun Dec 11 04:13:24 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
- server on longer crashes on client crash - server on longer crashes on client crash
- preserve pane focus properly when closing panes and switching tabs - preserve pane focus properly when closing panes and switching tabs
- missing tokyo-night-dark theme - missing tokyo-night-dark theme
- plugin assets are now moved to zellij-utils/assets/plugins. updated specfile accordingly
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Nov 17 02:24:51 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com> Thu Nov 17 02:24:51 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>

View File

@ -82,7 +82,7 @@ Zsh command-line completion support for %{name}.
mkdir -p .cargo mkdir -p .cargo
cp %{SOURCE2} .cargo/config cp %{SOURCE2} .cargo/config
# Remove prebuilt binaries # Remove prebuilt binaries
rm assets/plugins/* rm -v zellij-utils/assets/plugins/*
%build %build
# First rebuilt plugins we just deleted # First rebuilt plugins we just deleted
@ -101,7 +101,7 @@ cargo --offline build --release --target=wasm32-wasi
popd popd
# Move the results to the place they are expected # Move the results to the place they are expected
mv target/wasm32-wasi/release/*.wasm assets/plugins/ mv -v target/wasm32-wasi/release/*.wasm zellij-utils/assets/plugins/
# Build zellij proper # Build zellij proper
%{cargo_build} --features unstable %{cargo_build} --features unstable