They will be injected by Tampermonkey
index-testing-modal1.html and index-testing-modal2.html are only for testing locally the UI. The ones that will be injected will be modal1-select.html and modal2.html
modal1 is for selecting templates
| #!/bin/bash | |
| current_branch=`git rev-parse --abbrev-ref HEAD` | |
| if [[ $current_branch =~ master|main ]]; then | |
| message="Please don't push directly to $current_branch." | |
| echo -e "\033[1;31mERROR: $message\033[0m"; | |
| exit 1 | |
| fi | |
| repo_dir=`git rev-parse --show-toplevel` |
| #!/bin/bash | |
| awk '{s+=$1}END{print "\nAverage:",s/NR,"\n"}' numbers.txt |