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

Side by Side Diff: third_party/polymer/components/web-animations-js/tools/android/stop.sh

Issue 592603004: Revert "Polymer elements added to third_party/polymer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
(Empty)
1 #! /bin/bash
2
3 # Stop all the stuff started by setup.sh
4 set -x
5 set -e
6 ANDROID_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
7 . $ANDROID_DIR/config.sh
8 cd $ANDROID_DIR
9
10 for SERVER in $SERVERS; do
11 PIDFILE_VAR=${SERVER}_PIDFILE
12 PIDFILE=${!PIDFILE_VAR}
13 echo "$SERVER $PIDFILE"
14 if [ -e $PIDFILE ]; then
15 echo "Stopping $SERVER at $(cat $PIDFILE)"
16 /sbin/start-stop-daemon --stop --pidfile $PIDFILE --retry TERM/30/KILL/5 || rm $PIDFILE
17 fi
18 done
19
20 cd $OLD_PWD
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698