← Back to Explore

goto-from-fail

FAIL triggers GOTO to a recovery step

goto

Rundown


# GOTO From Fail

Fail step 1 to jump to the recovery step, or pass directly.

## 1. Risky Operation

- PASS: COMPLETE
- FAIL: GOTO 2

```bash
rd echo "risky operation"
```

## 2. Recovery

- PASS: COMPLETE

```bash
rd echo "recovery"
```

Run

Fail step 1 (GOTO 2), pass recovery step 2

Initializing...

Initializing...

Step/