From 5a376225596aabb666ac712e468eee8619215dce Mon Sep 17 00:00:00 2001
From: jugeeya <jugeeya@live.com>
Date: Wed, 14 Apr 2021 11:19:16 -0700
Subject: [PATCH 1/2] Fix skyline download

---
 .github/workflows/rust.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index b054b67..e739f85 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -45,14 +45,14 @@ jobs:
         SMASH_PLUGIN_DIR: atmosphere/contents/01006A800016E000/romfs/skyline/plugins
         SMASH_WEB_DIR: atmosphere/contents/01006A800016E000/manual_html/contents.htdocs
       run: |
+        mkdir -p ${{env.SKYLINE_DIR}} 
+        mkdir -p ${{env.SMASH_PLUGIN_DIR}} 
+        mkdir -p ${{env.SMASH_WEB_DIR}}
+
         wget https://github.com/skyline-dev/skyline/releases/download/beta/skyline.zip
         unzip skyline.zip
 
         mv exefs ${{env.SKYLINE_DIR}}
-        
-        mkdir -p ${{env.SKYLINE_DIR}} 
-        mkdir -p ${{env.SMASH_PLUGIN_DIR}} 
-        mkdir -p ${{env.SMASH_WEB_DIR}}
 
         cp plugin/libtraining_modpack.nro ${{env.SMASH_PLUGIN_DIR}}/libtraining_modpack.nro
         wget https://github.com/ultimate-research/params-hook-plugin/releases/download/v0.1.1/libparam_hook.nro

From 025d2575c3d64be5afa1934f7e133eb69e104962 Mon Sep 17 00:00:00 2001
From: jugeeya <jugeeya@live.com>
Date: Wed, 14 Apr 2021 11:39:10 -0700
Subject: [PATCH 2/2] Fix skyline install dir

---
 .github/workflows/rust.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index e739f85..7f55f60 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -41,7 +41,7 @@ jobs:
       uses: actions/download-artifact@v2
     - name: Prepare zip
       env:
-        SKYLINE_DIR: atmosphere/contents/01006A800016E000/exefs
+        SKYLINE_DIR: atmosphere/contents/01006A800016E000/
         SMASH_PLUGIN_DIR: atmosphere/contents/01006A800016E000/romfs/skyline/plugins
         SMASH_WEB_DIR: atmosphere/contents/01006A800016E000/manual_html/contents.htdocs
       run: |