From 7868a91fd83b6e85f09465bf8e76a4a6bfec9099 Mon Sep 17 00:00:00 2001 From: jugeeya Date: Sun, 15 Aug 2021 23:18:56 -0700 Subject: [PATCH] Use basename for SVGs --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3174036..6a87ec1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -82,7 +82,7 @@ jobs: wget https://github.com/ultimate-research/nro-hook-plugin/releases/download/v0.1.1/libnro_hook.nro cp libparam_hook.nro ${{env.SMASH_PLUGIN_DIR}}/libparam_hook.nro cp libnro_hook.nro ${{env.SMASH_PLUGIN_DIR}}/libnro_hook.nro - ls -1 svg/*.svg | xargs -L1 -I{} cp {} ${{env.SMASH_WEB_DIR}}/{}.svg + ls -1 svg/*.svg | xargs -n 1 basename | xargs -L1 -I{} cp svg/{} ${{env.SMASH_WEB_DIR}}/{} zip -r training_modpack_beta.zip atmosphere - name: Update Release uses: meeDamian/github-release@2.0 @@ -103,4 +103,4 @@ jobs: uses: actions/upload-artifact@v1 with: name: full_build - path: training_modpack_beta.zip \ No newline at end of file + path: training_modpack_beta.zip