We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f111227 commit 035b579Copy full SHA for 035b579
.circleci/config.yml
@@ -812,7 +812,7 @@ jobs:
812
# yarn --cwd redisinsight/api install
813
# yarn --cwd tests/e2e install
814
# Install plugins dependencies
815
- echo "export pluginsOnlyInstall=1" >> $BASH_ENV
+ export pluginsOnlyInstall=1
816
# yarn build:statics
817
sh ./scripts/build-statics.sh
818
- run:
scripts/build-statics.sh
@@ -3,7 +3,7 @@ set -e
3
4
echo $pluginsOnlyInstall
5
6
-if [ $pluginsOnlyInstall = "1" ]; then
+if [ $pluginsOnlyInstall == "1" ]; then
7
exit 1
8
fi
9
0 commit comments