Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. clear
  4.  
  5. echo -e "#1 - Removing build/ directory for a fresh build of the project..."
  6. if [ -d "build/" ]; then
  7. rm -rf build/
  8. fi
  9.  
  10. echo -e "\n#2 = Building project..."
  11. polymer build
  12.  
  13. echo -e "\n#3 - Deploying to Firebase Hosting..."
  14. firebase deploy
  15.  
  16. echo -e "\nDone. The project deployed successfully."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement