Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Update create-project.sh #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build/create-project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ if [ -z "$SWAGGER_FILE" ]; then
SWAGGER_FILE=/src/input/swagger.json
fi

mkdir -p /src/input
mkdir -p input

rm -rf input/*
rm -rf $OUTPUT_PATH/*
mkdir -p /src/input
mkdir -p input

if [[ $SWAGGER_FILE == http* ]]; then
echo "Im downloading the swagger spec from a remote Url $SWAGGER_FILE to local path $INPUT_PATH"
Expand Down