| 12345678910111213141516171819202122232425 | #!/bin/bashecho "Generating flowy icon files"# Store the current working directoryoriginal_dir=$(pwd)cd "$(dirname "$0")"# Navigate to the project rootcd ../../../appflowy_flutterrm -rf assets/flowy_icons/mkdir -p assets/flowy_icons/rsync -r ../resources/flowy_icons/ assets/flowy_icons/flutter packages pub getecho "Generating FlowySvg classes"dart run flowy_svgecho "Done generating icon files."# Return to the original directorycd "$original_dir"
 |