File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 55
66set -e
77
8- # Use environment variables directly instead of parameters
9- NETWORK_NAME=" sdfsdfsdfsdfsdf" # "${NETWORK_NAME:-SAMPLE-VALUE}"
10- MINTSCAN_CHAIN_ID=" sdfsdfsdfsdfsdf" # "${MINTSCAN_CHAIN_ID:-SAMPLE-VALUE}"
11-
128# Function to generate Mintscan URLs
139generate_mintscan_block_url () {
1410 local block_height=" $1 "
@@ -41,10 +37,9 @@ LINUX_ARM64_CHECKSUM="${15}"
4137RUN_NUMBER=" ${16} "
4238COMMIT_SHA=" ${17} "
4339
44- echo " DEBUG: Total parameters received: $# "
45- echo " DEBUG: All parameters: $@ "
46- echo " DEBUG: NETWORK_NAME: '$NETWORK_NAME '"
47- echo " DEBUG: MINTSCAN_CHAIN_ID: '$MINTSCAN_CHAIN_ID '"
40+ # Use environment variables directly instead of parameters
41+ NETWORK_NAME=" ${NETWORK_NAME:- SAMPLE-VALUE} "
42+ MINTSCAN_CHAIN_ID=" ${MINTSCAN_CHAIN_ID:- SAMPLE-VALUE} "
4843
4944# Extract proposal number from proposal file path (e.g., "proposals/038-upgrade-v22.json" -> "038")
5045PROPOSAL_NUMBER=$( basename " $PROPOSAL_FILE " | cut -d' -' -f1)
You can’t perform that action at this time.
0 commit comments