-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate.bat
More file actions
30 lines (20 loc) · 826 Bytes
/
Copy pathgenerate.bat
File metadata and controls
30 lines (20 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@echo off
call flutter pub get
if %errorlevel% neq 0 exit /b %errorlevel%
call dart run easy_localization:generate -S assets\translations
if %errorlevel% neq 0 exit /b %errorlevel%
call dart run easy_localization:generate -S assets\translations -f keys -o locale_keys.g.dart
if %errorlevel% neq 0 exit /b %errorlevel%
call dart run flutter_launcher_icons
if %errorlevel% neq 0 exit /b %errorlevel%
cd packages\local_storage_repository\
if %errorlevel% neq 0 exit /b %errorlevel%
call dart run build_runner build
if %errorlevel% neq 0 exit /b %errorlevel%
cd ..
if %errorlevel% neq 0 exit /b %errorlevel%
cd totp_api
if %errorlevel% neq 0 exit /b %errorlevel%
call dart run build_runner build
if %errorlevel% neq 0 exit /b %errorlevel%
echo All commands have been executed successfully.