Skip to content

Commit

Permalink
fix wrong hash generating
Browse files Browse the repository at this point in the history
  • Loading branch information
hawthorne-abendsen committed Jun 16, 2024
1 parent 043316f commit b8d0cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ fi
CLI_VERSION=$(soroban --version | grep -oP 'soroban \K\S+')

# Calculate the SHA256 hash of the wasm file
WASM_FILE_SHA256=$(sha256sum $wasm_file | cut -d ' ' -f 1)
WASM_FILE_SHA256=$(sha256sum $WASM_FILE_NAME | cut -d ' ' -f 1)

JSON_FILE="${RELEASE_DIR}/compilation_info.json"
jq -n --arg PACKAGE_NAME "$PACKAGE_NAME" \
Expand Down

0 comments on commit b8d0cfd

Please sign in to comment.