12 lines
123 B
Bash
Executable File
12 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd ./swagger-ui
|
|
|
|
if [ ! -d "./node_modules/" ]
|
|
then
|
|
npm install
|
|
npm install swagger-cli
|
|
fi
|
|
|
|
npm start
|