mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-15 01:32:20 -05:00
9 lines
169 B
Bash
Executable File
9 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
echo "Chown application to be owned by notify-app"
|
|
|
|
cd /home/notify-app/;
|
|
chown -R notify-app:govuk-notify-applications notifications-api
|