mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-14 17:15:18 +01:00
18 lines
353 B
Bash
Executable File
18 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e;
|
|
|
|
echo "$(tput setaf 136)"
|
|
echo " Starting S3 deployment "
|
|
echo "============================================="
|
|
echo "$(tput sgr0)" # reset
|
|
|
|
gulp deploy
|
|
|
|
gulp seo
|
|
|
|
echo "$(tput setaf 64)" # green
|
|
echo "---------------------------------------------"
|
|
echo " ✓ done S3 deployment "
|
|
echo "$(tput sgr0)" # reset
|