Skip to content

Commit

Permalink
fix(nns-tools): Fix forum post generator (#3407)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-dfinity authored Jan 10, 2025
1 parent a4224e8 commit 8acef9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testnet/tools/nns-tools/lib/proposals.sh
Original file line number Diff line number Diff line change
Expand Up @@ -624,12 +624,12 @@ proposal_field_value() {

nns_upgrade_proposal_canister_raw_name() {
local FILE=$1
cat "$FILE" | grep "## Proposal to Upgrade the" | cut -d' ' -f6
cat "$FILE" | grep "# Upgrade the" | cut -d' ' -f4
}

sns_wasm_publish_proposal_canister_raw_name() {
local FILE=$1
cat "$FILE" | grep "## Proposal to Publish the SNS" | cut -d' ' -f7
cat "$FILE" | grep "# Publish SNS" | cut -d' ' -f4
}
#### Proposal text validators

Expand Down

0 comments on commit 8acef9e

Please sign in to comment.