Browse Source

cpptrace: fix url (#2494)

star9029 2 years ago
parent
commit
00b7022184
2 changed files with 2 additions and 2 deletions
  1. 1 1
      packages/c/cpptrace/xmake.lua
  2. 1 1
      packages/l/libassert/xmake.lua

+ 1 - 1
packages/c/cpptrace/xmake.lua

@@ -3,7 +3,7 @@ package("cpptrace")
     set_description("Lightweight, zero-configuration-required, and cross-platform stacktrace library for C++")
     set_license("MIT")
 
-    add_urls("https://github.com/jeremy-rifkin/cpptrace/-/archive/$(version).tar.gz",
+    add_urls("https://github.com/jeremy-rifkin/cpptrace/archive/refs/tags/archive/$(version).tar.gz",
              "https://github.com/jeremy-rifkin/cpptrace.git")
 
     add_versions("v0.1", "411bf19e079b550c50e6d39c82e3cb8d4a7dd2e9a8107a8f1843929c4b4e63de")

+ 1 - 1
packages/l/libassert/xmake.lua

@@ -6,7 +6,7 @@ package("libassert")
     add_urls("https://github.com/jeremy-rifkin/libassert/archive/refs/tags/$(version).tar.gz",
              "https://github.com/jeremy-rifkin/libassert.git")
 
-    add_versions("v1.2", "332F96181F4BDBD95EF5FCD6484782BA2D89B50FD5189BC2A33FD524962F6771")
+    add_versions("v1.2", "332f96181f4bdbd95ef5fcd6484782ba2d89b50fd5189bc2a33fd524962f6771")
 
     add_configs("decompose", {description = "Enables expression decomposition of && and || (this prevents short circuiting)", default = false, type = "boolean"})
     add_configs("lowercase", {description = "Enables assert alias for ASSERT", default = false, type = "boolean"})