Files
solana-voting-program/.stackclass/run.sh
2025-09-06 07:59:43 +00:00

12 lines
269 B
Bash
Executable File

#!/bin/sh
#
# This script is used to run your program on StackClass
#
# This runs after .stackclass/compile.sh
#
# Learn more: https://docs.stackclass.dev/challenges/program-interface
set -e # Exit on failure
exec target/release/stackclass-solana-voting-program "$@"