Last active
December 2, 2019 10:07
-
-
Save niwatly/4353bd9eba55527adb52e4972a244ea3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| copyfluttericons() { | |
| if test $# != 1; then | |
| echo "フォルダを指定してください" | |
| else | |
| flutterIconsFolder=$1 | |
| \mv -f $flutterIconsFolder/*.dart ./lib/resource/icon_resource.dart | |
| \mv -f $flutterIconsFolder/fonts/*.ttf ./fonts/ | |
| \mv -f $flutterIconsFolder/config.json ./fonts/ | |
| rmdir $flutterIconsFolder/fonts | |
| rmdir $flutterIconsFolder | |
| fi | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment