7 lines
91 B
Bash
Executable File
7 lines
91 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
CURDIR=$(dirname "$(realpath "$0")")
|
|
|
|
exec "$CURDIR"/cloud-proxy "$@"
|