2017-05-13 11:50:01 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# find and store current version number
|
|
|
|
version=$(grep '"version"' package.json | cut -d '"' -f4)
|
|
|
|
|
|
|
|
# compress 'icons' directory into feather-[version].zip
|
2017-06-05 10:28:24 +03:00
|
|
|
zip -r feather.zip ./icons/
|