mirror of
https://github.com/actions/runner-images.git
synced 2025-12-29 21:42:55 +08:00
10 lines
150 B
Bash
10 lines
150 B
Bash
#!/bin/bash
|
|
# /opt/entrypoint.sh
|
|
|
|
# Load environment variables from file
|
|
set -a
|
|
source /etc/environment
|
|
set +a
|
|
|
|
# Execute the actual command
|
|
exec "$@" |