Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sh/e2e/lib/clouds/digitalocean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ _digitalocean_validate_env() {
# ---------------------------------------------------------------------------
_digitalocean_headless_env() {
local app="$1"
# local agent="$2" # unused but part of the interface
# $2 = agent (unused but part of the interface)

printf 'export DO_DROPLET_NAME="%s"\n' "${app}"
printf 'export DO_DROPLET_SIZE="%s"\n' "${DO_DROPLET_SIZE:-${_DO_DEFAULT_SIZE}}"
Expand Down
2 changes: 1 addition & 1 deletion sh/e2e/lib/clouds/gcp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ process.stdout.write(d.GCP_ZONE || '');
# ---------------------------------------------------------------------------
_gcp_headless_env() {
local app="$1"
# local agent="$2" # unused but part of the interface
# $2 = agent (unused but part of the interface)

printf 'export GCP_INSTANCE_NAME="%s"\n' "${app}"
printf 'export GCP_PROJECT="%s"\n' "${GCP_PROJECT:-}"
Expand Down
2 changes: 1 addition & 1 deletion sh/e2e/lib/clouds/sprite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ _sprite_validate_env() {
# ---------------------------------------------------------------------------
_sprite_headless_env() {
local app="$1"
# local agent="$2" # unused but part of the interface
# $2 = agent (unused but part of the interface)

printf 'export SPRITE_NAME="%s"\n' "${app}"
if [ -n "${_SPRITE_ORG}" ]; then
Expand Down
Loading