mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-22 06:59:30 -06:00
7 lines
119 B
Bash
Executable File
7 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# If we're in CI, exit early
|
|
if [[ $CI ]]; then exit 0; fi
|
|
# otherwise, run the supplied command
|
|
"${@:1}"
|