| 1234567891011121314151617181920212223242526 | @echo offecho 'Generating flowy icon files'REM Store the current working directoryset "original_dir=%CD%"REM Change the current working directory to the script's locationcd /d "%~dp0"cd ..\..\..\appflowy_flutterREM copy the resources/translations folder toREM   the appflowy_flutter/assets/translation directoryecho Copying resources/flowy_icons to appflowy_flutter/assets/flowy_iconsxcopy /E /Y /I ..\resources\flowy_icons assets\flowy_iconscall flutter packages pub getecho Generating FlowySvg classcall dart run flowy_svgecho Done generating icon files.REM Return to the original directorycd /d "%original_dir%"
 |