From a74feab74154ecbd5dc126b727f2863d4bb1d57e Mon Sep 17 00:00:00 2001 From: karliss Date: Sun, 21 Mar 2021 12:38:21 +0200 Subject: [PATCH] Use jsdec tag matching rizin verison. (#2640) --- dist/bundle_jsdec.ps1 | 2 +- scripts/jsdec.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/bundle_jsdec.ps1 b/dist/bundle_jsdec.ps1 index ab3df584..3c6c1fb3 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 --branch master --depth 1 + git clone https://github.com/rizinorg/jsdec.git --branch v0.1.x --depth 1 } 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 a6986140..421ff3df 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 --branch master + git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch v0.1.x fi cd jsdec