Minor corrections on the numbering of examples under examples_baremetal #28
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue: Currently, under "examples_baremetal", example 3 is not available (or may have been permanently deleted). As such, running "npm run deploy:3" and "npm run call:3" would result in an error.
Minor changes proposed :
"deploy:1": "solana program deploy ./examples_baremetal/target/deploy/helloworld.so",
"call:1": "ts-node examples_baremetal/example1-helloworld/client/main.ts",
"deploy:2": "solana program deploy ./examples_baremetal/target/deploy/counter.so",
"call:2": "ts-node examples_baremetal/example2-counter/client/main.ts",
"deploy:3": "solana program deploy ./examples_baremetal/target/deploy/cpi.so",
"call:3": "ts-node examples_baremetal/example3-cpi/client/main.ts",
"deploy:4": "solana program deploy ./examples_baremetal/target/deploy/compute.so",
"call:4": "ts-node examples_baremetal/example4-compute/client/main.ts",
"deploy:5": "solana program deploy ./examples_baremetal/target/deploy/pda.so",
"call:5": "ts-node examples_baremetal/example5-pda/client/main.ts",
Note: With the above changes, "npm run deploy:x" and "npm run call:x" works naturally for x = {1, 2, 3, 4, 5}.