Skip to content

Commit f8091bc

Browse files
authored
fix(build): skip CLI builds (#2982)
1 parent d14478d commit f8091bc

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

build_cli.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/usr/bin/env bash
22

3+
if [[ "${SHOULD_BUILD_CLI}" == "no" ]]; then
4+
echo "Skipping CLI build"
5+
return 0
6+
fi
7+
38
set -ex
49

510
cd cli

0 commit comments

Comments
 (0)