#!/bin/sh files=( "pages/" "manifest.webmanifest" "index.html" "*.css" "*.png" ) echo -n "Remove all build files in 'public'... " for file in "${files[@]}" do rm -rf ./public/$file &> /dev/null done echo "Complete!"