File: run_source_check_and_format.bash

package info (click to toggle)
python-pyflow 1.1.20-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 996 kB
  • sloc: python: 4,154; sh: 219; ansic: 15; makefile: 5
file content (21 lines) | stat: -rwxr-xr-x 356 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
#
# run all code health scripts in one shot... this is a good pre-release step
#

set -o errexit
set -o nounset

this_dir=$(dirname $0)

script_dir=$this_dir/source_check_and_format


$script_dir/source_header_scripts/reheader_all_source.bash

$script_dir/delete_trailing_wspace.bash -imeanit

echo
echo "Source update complete."
echo