Compare commits
1 Commits
master
...
feature/ad
| Author | SHA1 | Date | |
|---|---|---|---|
| 50822d9e13 |
@@ -1,4 +1,5 @@
|
||||
# Git demo
|
||||
|
||||
|
||||
This project contains 5 bash scripts, and 3 branches we can use for testing.
|
||||
This project contains 5 bash scripts, and 3 branches we can use for testing. The testing script validates that the **scripts/** directory contains executable .sh files.
|
||||
|
||||
|
||||
17
tests/test.sh
Executable file
17
tests/test.sh
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# validate that the scripts folder only has .sh files
|
||||
if [[ $(find scripts -type f -not -name "*.sh") ]]; then
|
||||
echo "Error: scripts folder contains non-bash files"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# validate all scripts are executable
|
||||
for file in scripts/*.sh; do
|
||||
if [[ ! -x "$file" ]]; then
|
||||
echo "Error: $file is not executable"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
Reference in New Issue
Block a user