We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b1f4e commit 563d791Copy full SHA for 563d791
tests/validate_devfile_schemas.sh
@@ -2,7 +2,8 @@
2
3
set -x
4
5
-stackDirs=$(bash "$(pwd)/tests/get_stacks.sh")
+stacksDir=${STACKS_DIR:-"$(pwd)/stacks"}
6
+stackDirs=${STACKS:-"$(bash "$(pwd)/tests/get_stacks.sh")"}
7
8
ginkgo run --procs 2 \
- tests/validate_devfile_schemas -- -stacksPath "$(pwd)"/stacks -stackDirs "$stackDirs"
9
+ tests/validate_devfile_schemas -- -stacksPath ${stacksDir} -stackDirs "$stackDirs"
0 commit comments