~ajkavanagh/openstack-mojo-specs/fix-os-project-id-nova-creds

« back to all changes in this revision

Viewing changes to scripts/check-lint.sh

  • Committer: Liam Young
  • Date: 2015-01-28 16:19:28 UTC
  • Revision ID: liam.young@canonical.com-20150128161928-l88peh9b03oi1w6m
Added make target and script to check on spec lint. Also, some lint cleanup as a result of the afore mentioned

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
find {object_storage_specs,full_stack} -name manifest | \
 
4
while read spec; do
 
5
    spec_dir=$(dirname $spec)
 
6
    echo $spec_dir
 
7
    ./scripts/mojo-spec-check.py $spec_dir
 
8
    echo ""
 
9
done