mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
* remove version from state and create new script to extract version * fix lint * [autofix.ci] apply automated fixes * fix web/gen script to error on file permissions * [autofix.ci] apply automated fixes * add version to footer * adjust tests * [autofix.ci] apply automated fixes * update changelog * move version back into state * [autofix.ci] apply automated fixes * nits --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Maximilian Hils <git@maximilianhils.com>
9 lines
147 B
Bash
Executable file
9 lines
147 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
for file in "$script_dir"/*.py; do
|
|
"$file"
|
|
done
|