From fa3b3ed8027067db93a8ecfa1de8d3176f6d96bd Mon Sep 17 00:00:00 2001 From: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Date: Sun, 28 Apr 2024 22:48:06 -0700 Subject: [PATCH] tool works now shit (#8) --- release.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release.bat b/release.bat index 85b2b13..18010e4 100644 --- a/release.bat +++ b/release.bat @@ -7,11 +7,11 @@ # also this way when I forget how to do this I'll have a nice tool for myself rustup target add x86_64-pc-windows-msvc -wsl.exe rustup target add x86_64-unknown-linux-musl +wsl --shell-type login rustup target add x86_64-unknown-linux-musl # Creates a release based off our current branch. Takes the release version as an arg # First, let's build our binaries. Needs to be done statically so people w/o the right c runtime can vibe cargo build --release --target x86_64-pc-windows-msvc -wsl.exe cargo build --release --target x86_64-unknown-linux-musl +wsl --shell-type login cargo build --release --target x86_64-unknown-linux-musl # Next, we'll create a folder to hold our shit set name="Hypnagogic Release v%1"