Commit 16c2a727 authored by Winnie Hellmann's avatar Winnie Hellmann

Make check_no_partial_karma_jest.sh not fail without ee/

parent be09ae21
#!/usr/bin/env bash #!/usr/bin/env bash
karma_files=$(find spec/javascripts ee/spec/javascripts -type f -name '*_spec.js' -not -path '*/helpers/*') karma_directory=spec/javascripts
if [ -d ee ]; then
karma_directory="$karma_directory ee/$karma_directory"
fi
karma_files=$(find $karma_directory -type f -name '*_spec.js' -not -path '*/helpers/*')
violations="" violations=""
for karma_file in $karma_files; do for karma_file in $karma_files; do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment