7 lines
135 B
Text
7 lines
135 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
#MISE description="Deploy the Fly.io public proxy"
|
||
|
|
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
cd "$(dirname "$0")/../fly"
|
||
|
|
fly deploy "$@"
|