This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Function to verify a single program | |
verify_program() { | |
local program_dir=$1 | |
local max_attempts=5 | |
local attempt=1 | |
# Get the base name and convert hyphens to underscores | |
library_name=$(basename "$program_dir" | tr '-' '_') |