We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3ac5f0 commit 7ef9844Copy full SHA for 7ef9844
.github/workflows/fuzzing.yml
@@ -100,7 +100,7 @@ jobs:
100
echo "Found Fuzzing scripts: ${fuzzing_scripts[@]}"
101
current_week=($(date -u +%U))
102
echo "Current week number: $current_week"
103
- at_index=$((($(date -u +%U) % ${#fuzzing_scripts[@]})))
+ at_index=$(((10#$(date -u +%U)) % ${#fuzzing_scripts[@]}))
104
selected_script="${fuzzing_scripts[$at_index]}"
105
echo "Selected script: $selected_script"
106
timeout --preserve-status --signal=SIGINT 60m python $selected_script
0 commit comments