| OLD | NEW |
| (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} | |
| OLD | NEW |