From 4990d23c32a7843c2660b94fd91f9a1e0e5c9ddd Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Thu, 29 Jun 2023 18:49:03 -0400 Subject: [PATCH] update release script (#255) --- scripts/full-release.sh | 3 ++- steamguard/src/confirmation.rs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/full-release.sh b/scripts/full-release.sh index 6b70d5f..d20801e 100755 --- a/scripts/full-release.sh +++ b/scripts/full-release.sh @@ -78,8 +78,9 @@ fi BUILD_TARGET="x86_64-unknown-linux-musl" BUILD_TARGET2="x86_64-pc-windows-gnu" -cross build --release "--target=$BUILD_TARGET" +# HACK: build targets in this order to avoid a bug in cross cross build --release "--target=$BUILD_TARGET2" +cross build --release "--target=$BUILD_TARGET" ./scripts/package-deb.sh diff --git a/steamguard/src/confirmation.rs b/steamguard/src/confirmation.rs index 3d861d5..cde9747 100644 --- a/steamguard/src/confirmation.rs +++ b/steamguard/src/confirmation.rs @@ -350,7 +350,7 @@ impl Confirmation { #[derive(Debug, Clone, Copy, PartialEq, Eq, Deserialize)] #[repr(u32)] #[serde(from = "u32")] -/// Source: https://github.com/SteamDatabase/SteamTracking/blob/6e7797e69b714c59f4b5784780b24753c17732ba/Structs/enums.steamd#L1607-L1616 +/// Source: pub enum ConfirmationType { Test = 1, Trade = 2,