From 388be74fb58484412652f0846ca1b93e1c1a6256 Mon Sep 17 00:00:00 2001 From: Mo Langning <133737702+molangning@users.noreply.github.com> Date: Sun, 26 Nov 2023 04:09:22 +0800 Subject: [PATCH] small wrapper to clone and patch things away --- .bin/trickest-updater.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 .bin/trickest-updater.sh diff --git a/.bin/trickest-updater.sh b/.bin/trickest-updater.sh new file mode 100755 index 00000000..203d3df9 --- /dev/null +++ b/.bin/trickest-updater.sh @@ -0,0 +1,12 @@ +#!/usr/bin/bash + +set -e +set -o pipefail + +mkdir -p .working_space +cd .working_space +git clone --depth=1 https://github.com/trickest/wordlists.git +cd ../ + +./.bin/trickest-patcher.py +rm -rf .working_space \ No newline at end of file