diff --git a/deploy.sh b/deploy.sh index 9eb3dd9..105c351 100644 --- a/deploy.sh +++ b/deploy.sh @@ -25,7 +25,7 @@ fi rm -rf "${destination}"/* || die "Failed to clean destination directory (step 1)" rm -rf "${destination}"/.??* || die "Failed to clean destination directory (step 2)" -cp -a dencode.css index.html package.json systemjs.config.js "${destination}" || die "Failed to copy resources to dest/" +cp -a index.html package.json systemjs.config.js "${destination}" || die "Failed to copy resources to dest/" mkdir -p "${destination}/app" || die "Failed to create dest/app directory" cp -a app/*.css app/*.html app/*.js app/*.js.map "${destination}/app" || die "Failed to copy resources to dest/app"