| Index: runtime/bin/vmservice/client/resources.sh
|
| diff --git a/runtime/bin/vmservice/client/resources.sh b/runtime/bin/vmservice/client/resources.sh
|
| index 06868054f84d5d8b71b96ba7483a517c4c94c7d1..18a84ac36ab7804e64a17b345ee3ffa5aa2e67ca 100755
|
| --- a/runtime/bin/vmservice/client/resources.sh
|
| +++ b/runtime/bin/vmservice/client/resources.sh
|
| @@ -12,12 +12,12 @@ fi
|
|
|
| PREFIX="vmservice/client"
|
| echo "For resources_sources.gypi:"
|
| -for i in `find deployed/web/ -not -type d -not -path '*/\.*'`; do
|
| +for i in `find deployed/web/ -not -type d -not -path '*/\.*' -not -path '*~'`; do
|
| echo "'$PREFIX/$i',"
|
| done
|
|
|
| PREFIX="../../../../dart/runtime/bin/vmservice/client"
|
| echo "For devtools.gypi:"
|
| -for i in `find deployed/web/ -not -type d -not -path '*/\.*'`; do
|
| +for i in `find deployed/web/ -not -type d -not -path '*/\.*' -not -path '*~'`; do
|
| echo "'$PREFIX/$i',"
|
| done
|
|
|