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

Side by Side Diff: gallery/cws/cws_package.sh

Issue 12088091: Remove legacy docs and gallery (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gallery/cws/README ('k') | gallery/cws/images/NaCl128.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 #
5 # This script is used to package up the necessary files to put the NaCl gallery
6 # in the Chrome Web Store
7 #
8 # usage: ./cws_package.sh [outputname]
9
10 IMAGES="images/NaCl16.png images/NaCl128.png"
11 MANIFEST="manifest.json"
12 ZIP_NAME="nacl-gallery-app.zip"
13
14 if [ "$1" ] ; then
15 ZIP_NAME=$1
16 fi
17
18 zip ${ZIP_NAME} -r ${IMAGES} ${MANIFEST}
OLDNEW
« no previous file with comments | « gallery/cws/README ('k') | gallery/cws/images/NaCl128.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698