blob: 63369d6c4af1f9caebfa13162098035e088f9eaa [file] [log] [blame]
#!/bin/bash
# Copyright 2013 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
filecount=`find . -name '*.dart' | wc -l`
if [ $filecount -ne 0 ]
then
echo 'Dart sources are not allowed in this package:'
find . -name '*.dart'
exit 1
fi