From 355bf23280f94f926a34181a2ddae78ccae6b510 Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Thu, 29 Oct 2020 20:15:23 +0100 Subject: [PATCH 1/2] Solve the issue #75 telling where to put the distro tar.gz depending on the distribution --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 66724535..e5344615 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,13 @@ So, if I wanted to instead call my distro "TheBestDistroEver", I'd change this t 1. Ensure `` ends in ".exe". This is the command that will be used to launch your distro from the command line and should match the executable name we picked in step 4. 1. Make sure each of the `Executable` values matches the executable name we picked in step 4. -7. Copy your tar.gz containing your distro into the root of the project and rename it to `install.tar.gz`. +7. Create one folder into the project's root for each architecture that you want your distro to be available (x64 and ARM64). Then copy your tar.gz containing your distro for the desired architecture into the corresponding folder and rename it to `install.tar.gz`. The structure is as follows: + +* + - x64 + - install.tar.gz + - ARM64 + - install.tar.gz ## Setting up your Windows Environment You will need a Windows environment to test that your app installs and works as expected. To set up a Windows environment for testing you can follow the steps from the [Windows Dev Center](https://developer.microsoft.com/en-us/windows/downloads/virtual-machines). From a352c71ebaf22b08f4833d1708c428a386c3ed0e Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Thu, 29 Oct 2020 20:17:07 +0100 Subject: [PATCH 2/2] Fix the markup --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index e5344615..ed61bad5 100644 --- a/README.md +++ b/README.md @@ -89,8 +89,7 @@ So, if I wanted to instead call my distro "TheBestDistroEver", I'd change this t 1. Make sure each of the `Executable` values matches the executable name we picked in step 4. 7. Create one folder into the project's root for each architecture that you want your distro to be available (x64 and ARM64). Then copy your tar.gz containing your distro for the desired architecture into the corresponding folder and rename it to `install.tar.gz`. The structure is as follows: - -* +* < project root > - x64 - install.tar.gz - ARM64