#!/bin/bash # Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT-0 # I want to make sure that the directory is clean and has nothing left over from # previous deployments. The servers auto scale so the directory may or may not # exist. cd /home/ec2-user/node-website if [ -d /home/ec2-user/node-website ]; then rm -rf /home/ec2-user/node-website fi mkdir -vp /home/ec2-user/node-website