aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy/servo_tidy_tests/shell_tidy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'python/tidy/servo_tidy_tests/shell_tidy.sh')
-rw-r--r--python/tidy/servo_tidy_tests/shell_tidy.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/python/tidy/servo_tidy_tests/shell_tidy.sh b/python/tidy/servo_tidy_tests/shell_tidy.sh
deleted file mode 100644
index e38358fc3b6..00000000000
--- a/python/tidy/servo_tidy_tests/shell_tidy.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-#
-# Tests tidy for shell scripts.
-
-set -o nounset
-
-# Talking about some `concept in backticks` # shouldn't trigger
-echo "hello world"
-some_var=`echo "command substitution"`
-another_var="$some_var"
-if [ -z "${some_var}" ]; then
- echo "should have used [["
-fi
-[ -z "${another_var}" ]