This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Build Order: | |
[INFO] | |
[INFO] jeo [pom] | |
[INFO] Core [jar] | |
[INFO] Format Modules [pom] | |
[INFO] CSV Driver [jar] | |
[INFO] GDAL/OGR Driver [jar] | |
[INFO] Geobuf Driver [jar] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"paths": { | |
"/api/users/{id}": { | |
"post": { | |
"tags": ["users"], | |
"summary": "Updates a single user", | |
"responses": { | |
"200": { | |
"description": "Success" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
INDEX=0 | |
IS_PARSING_WATCHED_FILES="y" | |
declare -a WATCHED_FILES | |
declare -a COMMAND | |
while [[ $# > 0 ]] | |
do | |
if [ "$1" == "--" ] |