mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-13 00:32:16 -05:00
11 lines
251 B
Bash
Executable File
11 lines
251 B
Bash
Executable File
#!/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
|
|
|