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 fc9d622 commit a7f4aceCopy full SHA for a7f4ace
entrypoint.sh
@@ -45,10 +45,11 @@ fi
45
if ! [ -z ${INPUT_APIDIRECTORY} ];then
46
echo "Importing APIs from directory: '${INPUT_APIDIRECTORY}'"
47
cd ${INPUT_APIDIRECTORY} || exit 99;
48
-for apiDirectory in `find . -mindepth 1 -type d`
49
-do
50
- echo "Import API from config directory: $apiDirectory"
51
- $CLI api import -s ${APIM_CLI_STAGE} -c ${apiDirectory}/api-config.json -force
52
-done
+ for apiDirectory in `find . -mindepth 1 -type d`
+ do
+ echo "Import API from config directory: $apiDirectory"
+ $CLI api import -s ${APIM_CLI_STAGE} -c ${apiDirectory}/api-config.json -force
+ done
53
+fi
54
55
exit
0 commit comments