7da5552ece
after previous change, which moved icons to .png format and to subdirectory img/. Bug: v8:7327 Notry: true Change-Id: Iebbbe175cc65ed1f2e505084344a2b55864732e7 Reviewed-on: https://chromium-review.googlesource.com/c/1494009 Commit-Queue: Sigurd Schneider <sigurds@chromium.org> Reviewed-by: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#59940}
25 lines
395 B
Bash
Executable File
25 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DEST=$1
|
|
|
|
if [ ! -d "$DEST" ]; then
|
|
echo -e "Destination \"$DEST\" is not a directory. Run\n\tnpm deploy -- [destination-directory]"
|
|
exit 1
|
|
fi
|
|
|
|
function copy() {
|
|
echo -n "."
|
|
cp "$@"
|
|
}
|
|
|
|
echo -n "Deploying..."
|
|
copy *.png $DEST/
|
|
copy *.css $DEST/
|
|
copy index.html $DEST/
|
|
copy info-view.html $DEST/
|
|
copy -R build $DEST/
|
|
copy -R img $DEST/
|
|
echo "done!"
|
|
|
|
echo "Deployed to $DEST/."
|