11cb0ef41Sopenharmony_ci#!/bin/bash 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciDEST=$1 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciif [ ! -d "$DEST" ]; then 61cb0ef41Sopenharmony_ci echo -e "Destination \"$DEST\" is not a directory. Run\n\tnpm deploy -- [destination-directory]" 71cb0ef41Sopenharmony_ci exit 1 81cb0ef41Sopenharmony_cifi 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_cifunction copy() { 111cb0ef41Sopenharmony_ci echo -n "." 121cb0ef41Sopenharmony_ci cp "$@" 131cb0ef41Sopenharmony_ci} 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ciecho -n "Deploying..." 161cb0ef41Sopenharmony_cicopy *.png $DEST/ 171cb0ef41Sopenharmony_cicopy *.css $DEST/ 181cb0ef41Sopenharmony_cicopy index.html $DEST/ 191cb0ef41Sopenharmony_cicopy info-view.html $DEST/ 201cb0ef41Sopenharmony_cicopy -R build $DEST/ 211cb0ef41Sopenharmony_cicopy -R img $DEST/ 221cb0ef41Sopenharmony_ciecho "done!" 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ciecho "Deployed to $DEST/." 25