fix: correct npx path (#2354)
This commit is contained in:
parent
ce42b84430
commit
6acfb55dcc
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ function mobile {
|
||||||
wget -O native_class.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/master/modules/openapi-generator/src/main/resources/dart2/serialization/native/native_class.mustache
|
wget -O native_class.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/master/modules/openapi-generator/src/main/resources/dart2/serialization/native/native_class.mustache
|
||||||
patch -u native_class.mustache <native_class.mustache.patch
|
patch -u native_class.mustache <native_class.mustache.patch
|
||||||
cd ../../../../..
|
cd ../../../../..
|
||||||
npx openapi-generator-cli generate -g dart -i ./immich-openapi-specs.json -o ../mobile/openapi -t ./openapi-generator/templates/mobile
|
npx --yes @openapitools/openapi-generator-cli generate -g dart -i ./immich-openapi-specs.json -o ../mobile/openapi -t ./openapi-generator/templates/mobile
|
||||||
|
|
||||||
# Post generate patches
|
# Post generate patches
|
||||||
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api_client.dart <./openapi-generator/patch/api_client.dart.patch
|
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api_client.dart <./openapi-generator/patch/api_client.dart.patch
|
||||||
|
@ -19,7 +19,7 @@ function web {
|
||||||
wget -O apiInner.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/v6.0.1/modules/openapi-generator/src/main/resources/typescript-axios/apiInner.mustache
|
wget -O apiInner.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/v6.0.1/modules/openapi-generator/src/main/resources/typescript-axios/apiInner.mustache
|
||||||
patch -u apiInner.mustache < apiInner.mustache.patch
|
patch -u apiInner.mustache < apiInner.mustache.patch
|
||||||
cd ../../..
|
cd ../../..
|
||||||
npx openapi-generator-cli generate -g typescript-axios -i ./immich-openapi-specs.json -o ../web/src/api/open-api -t ./openapi-generator/templates/web
|
npx --yes @openapitools/openapi-generator-cli generate -g typescript-axios -i ./immich-openapi-specs.json -o ../web/src/api/open-api -t ./openapi-generator/templates/web
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ $1 == 'mobile' ]]; then
|
if [[ $1 == 'mobile' ]]; then
|
||||||
|
|
Loading…
Reference in a new issue