13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
# This doesn't test fission, just the test framework. It ensures we
|
|
# have the right environment, that's all.
|
|
|
|
log "Test test, please ignore."
|
|
|
|
log $FISSION_URL
|
|
log $FISSION_ROUTER
|
|
which fission
|