mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
12 lines
341 B
Bash
12 lines
341 B
Bash
#!/bin/bash
|
|
################################################################################
|
|
## File: post-deployment.sh
|
|
## Desc: Post deployment actions
|
|
################################################################################
|
|
|
|
# set chmod -R 777 /opt
|
|
if [[ -d "/opt" ]]; then
|
|
echo "chmod -R 777 /opt"
|
|
chmod -R 777 /opt
|
|
fi
|