Files
019923cd-4262-7df1-a179-670…/.stackclass/run.sh

12 lines
269 B
Bash
Raw Normal View History

2025-09-07 10:51:18 +00:00
#!/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 "$@"