Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(625)

Side by Side Diff: runtime/bin/vmservice/client/deploy.sh

Issue 443713004: Rename vmservice/client to vmservice/observatory to match package name. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # This script copies the build outputs produced by `pub build` to
4 # the deployed directory.
5
6 if [ ! -d "build" ]; then
7 echo "Please run pub build first"
8 exit
9 fi
10
11 if [ ! -d "deployed" ]; then
12 echo "Run this script from the client directory"
13 exit
14 fi
15
16 EXCLUDE="--exclude bootstrap_css"
17 EXCLUDE="$EXCLUDE --exclude *.map"
18 EXCLUDE="$EXCLUDE --exclude *.concat.js"
19 EXCLUDE="$EXCLUDE --exclude *.scriptUrls"
20 EXCLUDE="$EXCLUDE --exclude *.precompiled.js"
21 EXCLUDE="$EXCLUDE --exclude main.*"
22
23 rsync -av --progress build/web/ deployed/web/ $EXCLUDE
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/bin/shell.dart ('k') | runtime/bin/vmservice/client/deployed/web/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698