Files
notifications-api/scripts/aws_clear_instance.sh

11 lines
251 B
Bash
Raw Normal View History

#!/bin/bash
echo "Removing application and dependencies"
if [ -d "/home/notify-app/notifications-api" ]; then
# Remove and re-create the directory
rm -rf /home/notify-app/notifications-api
mkdir -p /home/notify-app/notifications-api
fi