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

Side by Side Diff: debugger/build_release

Issue 1739603003: debugger: Actually include favicon.ico in the release package. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Builds and uploads a debian package for skdebugger. 2 # Builds and uploads a debian package for skdebugger.
3 APPNAME=skdebuggerd 3 APPNAME=skdebuggerd
4 SYSTEMD=${APPNAME}.service 4 SYSTEMD=${APPNAME}.service
5 DESCRIPTION="Program that serves up HTML/CSS/JS content for the Skia Debugger." 5 DESCRIPTION="Program that serves up HTML/CSS/JS content for the Skia Debugger."
6 6
7 # Copy files into the right locations in ${ROOT}. 7 # Copy files into the right locations in ${ROOT}.
8 copy_release_files() 8 copy_release_files()
9 { 9 {
10 INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root" 10 INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root"
11 INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root" 11 INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root"
12 ${INSTALL} --mode=644 -T ./sys/${APPNAME}.service ${ROOT}/etc/systemd/system /${APPNAME}.service 12 ${INSTALL} --mode=644 -T ./sys/${APPNAME}.service ${ROOT}/etc/systemd/system /${APPNAME}.service
13 ${INSTALL} --mode=755 -T ${GOPATH}/bin/skdebugger ${ROOT}/usr/local/bin/skde bugger 13 ${INSTALL} --mode=755 -T ${GOPATH}/bin/skdebugger ${ROOT}/usr/local/bin/skde bugger
14 14
15 ${INSTALL_DIR} --mode=755 ${ROOT}/usr/local/shar e/skdebugger/templates 15 ${INSTALL_DIR} --mode=755 ${ROOT}/usr/local/shar e/skdebugger/templates
16 ${INSTALL} --mode=644 ./templates/* ${ROOT}/usr/local/shar e/skdebugger/templates 16 ${INSTALL} --mode=644 ./templates/* ${ROOT}/usr/local/shar e/skdebugger/templates
17 ${INSTALL} --mode=644 ./res/js/core.js ${ROOT}/usr/local/shar e/skdebugger/res/js/core.js 17 ${INSTALL} --mode=644 ./res/js/core.js ${ROOT}/usr/local/shar e/skdebugger/res/js/core.js
18 ${INSTALL} --mode=644 ./res/vul/elements.html ${ROOT}/usr/local/shar e/skdebugger/res/vul/elements.html 18 ${INSTALL} --mode=644 ./res/vul/elements.html ${ROOT}/usr/local/shar e/skdebugger/res/vul/elements.html
19 ${INSTALL} --mode=644 ./res/img/favicon.ico ${ROOT}/usr/local/shar e/skdebugger/res/img/favicon.ico
19 } 20 }
20 21
21 rm ./res/vul/elements.html 22 rm ./res/vul/elements.html
22 make 23 make
23 24
24 source ../bash/release.sh 25 source ../bash/release.sh
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698