Skip to content

Commit 1785ca5

Browse files
Update fetch_capa.sh - Fix binary location
1 parent 9907c99 commit 1785ca5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

analyzers/Capa/fetch_capa.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ echo "Downloading from $DOWNLOAD_URL"
1919

2020
# Download and extract capa
2121
curl -L -o capa.zip "$DOWNLOAD_URL" || { echo "Download failed"; exit 1; }
22-
mkdir -p /worker/capa
23-
unzip capa.zip -d /worker/capa || { echo "Extraction failed"; exit 1; }
22+
mkdir -p /worker/Capa
23+
unzip capa.zip -d /worker/Capa || { echo "Extraction failed"; exit 1; }
2424

2525
# Clean up
2626
rm capa.zip

0 commit comments

Comments
 (0)