features.sh 254 B

123456789101112
  1. FEATURES=
  2. if [[ "$RUNTIME_PROFILE" == "TESTING" ]]; then
  3. FEATURES="testing_runtime"
  4. fi
  5. if [[ "$RUNTIME_PROFILE" == "STAGING" ]]; then
  6. FEATURES="staging_runtime"
  7. fi
  8. if [[ "$RUNTIME_PROFILE" == "PLAYGROUND" ]]; then
  9. FEATURES="playground_runtime"
  10. fi