Skip to content

Commit

Permalink
Revert "Unzip tar file after downloading"
Browse files Browse the repository at this point in the history
This reverts commit ff5b527.
  • Loading branch information
alexroan committed Jun 5, 2024
1 parent b500873 commit 05426bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cyfrinup/cyfrinup
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ main() {

# Download the binaries tarball and unpack it into the .cyfrinup bin directory.
say "downloading latest aderyn"
ensure curl -# -L $BIN_TARBALL_URL | tar -xzC $CYFRIN_BIN_DIR
ensure curl -# -L $BIN_TARBALL_URL -o "$CYFRIN_BIN_DIR/aderyn.tar.gz"

# Download the man tarball and unpack it into the .cyfrinup man directory.
say "installed aderyn"
Expand Down Expand Up @@ -123,4 +123,4 @@ ensure() {
if ! "$@"; then err "command failed: $*"; fi
}

main "$@" || exit 1
main "$@" || exit 1

0 comments on commit 05426bc

Please sign in to comment.