From eba685ec20bf43d1207690cf23dffd771d31499c Mon Sep 17 00:00:00 2001 From: Karan Batavia <118820668+karan-batavia@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:05:46 +0530 Subject: [PATCH] upgrade install script to use privado's fork (#37) --- joern-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/joern-install.sh b/joern-install.sh index f19615d2d67..71940ed8c3a 100755 --- a/joern-install.sh +++ b/joern-install.sh @@ -158,9 +158,9 @@ if [ $NO_DOWNLOAD = true ]; then sbt clean else if [ "$JOERN_VERSION" = "" ]; then - curl -L "https://github.com/joernio/joern/releases/latest/download/joern-cli.zip" -o "$SCRIPT_ABS_DIR/joern-cli.zip" + curl -L "https://github.com/Privado-Inc/joern/releases/latest/download/joern-cli.zip" -o "$SCRIPT_ABS_DIR/joern-cli.zip" else - curl -L "https://github.com/joernio/joern/releases/download/$JOERN_VERSION/joern-cli.zip" -o "$SCRIPT_ABS_DIR/joern-cli.zip" + curl -L "https://github.com/Privado-Inc/joern/releases/download/$JOERN_VERSION/joern-cli.zip" -o "$SCRIPT_ABS_DIR/joern-cli.zip" fi fi