mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-26 08:59:26 -05: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}"
|