chore: exit open-api script on errors (#27815)

This commit is contained in:
Mees Frensel
2026-04-15 16:09:51 +02:00
committed by GitHub
parent 603fc7401f
commit 8454cb2631
+4 -2
View File
@@ -1,6 +1,8 @@
#!/usr/bin/env bash
OPENAPI_GENERATOR_VERSION=v7.12.0
set -euo pipefail
# usage: ./bin/generate-open-api.sh
function dart {
@@ -39,9 +41,9 @@ function typescript {
pnpm --filter immich sync:open-api
)
if [[ $1 == 'dart' ]]; then
if [[ $# -ge 1 ]] && [[ $1 == 'dart' ]]; then
dart
elif [[ $1 == 'typescript' ]]; then
elif [[ $# -ge 1 ]] && [[ $1 == 'typescript' ]]; then
typescript
else
dart