From 3b0df1944acb2c80cfeac2df900d986a0d54b34c Mon Sep 17 00:00:00 2001 From: Surendrajat Date: Fri, 24 Sep 2021 21:50:08 +0530 Subject: [PATCH] Update jsdec and rz-ghidra to v0.3.0 (#2781) --- dist/CMakeLists.txt | 4 ++-- dist/bundle_jsdec.ps1 | 2 +- scripts/jsdec.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/CMakeLists.txt b/dist/CMakeLists.txt index ade8eee0..5dec4c46 100644 --- a/dist/CMakeLists.txt +++ b/dist/CMakeLists.txt @@ -109,8 +109,8 @@ if(CUTTER_PACKAGE_RZ_GHIDRA) # installed Cutter. ExternalProject_Add(rz-ghidra GIT_REPOSITORY https://github.com/rizinorg/rz-ghidra - #GIT_TAG v0.2.0 - GIT_TAG c7a50a2e7c0a95cd52b167c9ee0fa1805223f08e + GIT_TAG v0.3.0 + #GIT_TAG c7a50a2e7c0a95cd52b167c9ee0fa1805223f08e #GIT_TAG dev #GIT_SHALLOW ON # disable this line when using commit hash CONFIGURE_COMMAND "" diff --git a/dist/bundle_jsdec.ps1 b/dist/bundle_jsdec.ps1 index 7ab7f8c3..03cbbc75 100644 --- a/dist/bundle_jsdec.ps1 +++ b/dist/bundle_jsdec.ps1 @@ -2,7 +2,7 @@ $dist = $args[0] $python = Split-Path((Get-Command python.exe).Path) if (-not (Test-Path -Path 'jsdec' -PathType Container)) { - git clone https://github.com/rizinorg/jsdec.git --depth 1 + git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch v0.3.0 } cd jsdec & meson.exe --buildtype=release -Dc_args=-DDUK_USE_DATE_NOW_WINDOWS --prefix=$dist --libdir=lib\plugins --datadir=lib\plugins p build diff --git a/scripts/jsdec.sh b/scripts/jsdec.sh index e0530f09..f2954ca1 100755 --- a/scripts/jsdec.sh +++ b/scripts/jsdec.sh @@ -7,7 +7,7 @@ SCRIPTPATH=$(realpath "$(dirname "${BASH_SOURCE[0]}")") cd "$SCRIPTPATH/.." if [[ ! -d jsdec ]]; then - git clone https://github.com/rizinorg/jsdec.git --depth 1 + git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch v0.3.0 fi cd jsdec