My fellow devs, I need your opinion:
Say, you have a software project. To do some operations more quickly, you write helper scripts. Think `build.sh`, `download_dependencies.py`, whatever. You may use them yourself or in CI.
What is your directory name of choice for these scripts?
See next post for clarification.
Poll
Voting ended 15 April at 9:59.
`./scripts` is so far the most popular, it’s just what I have seen across projects.
`./script` was proposed (and is still used?) by GitHub. See https://github.com/github/scripts-to-rule-them-all
`./build` is sometimes used because these scripts are often executed at build-time (and thus in CI)
Another thing I’ve seen were scripts in the repository root, but for the sake of the poll let’s assume there are too many scripts for this.