mirror of
https://github.com/servo/servo.git
synced 2025-06-13 02:44:29 +00:00
This changes tidy to check shell scripts for the proper shebang and options. It does not check that variables are formatted correctly. It also adds a check for the MPL 2.0 license in shell scripts.
7 lines
82 B
Bash
7 lines
82 B
Bash
#!/bin/bash
|
|
#
|
|
# Tests tidy for shell scripts.
|
|
|
|
set -o nounset
|
|
|
|
echo "hello world"
|