mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
11 lines
257 B
Bash
Executable File
11 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Removing application and dependencies"
|
|
|
|
if [ -d "/home/notify-app/notifications-admin" ]; then
|
|
# Remove and re-create the directory
|
|
rm -rf /home/notify-app/notifications-admin
|
|
mkdir -p /home/notify-app/notifications-admin
|
|
fi
|
|
|