jkphl / iconizr

A PHP command line tool for converting SVG images to a set of CSS icons (SVG & PNG, single icons and / or CSS sprites) with support for image optimization and Sass output. Created by Joschi Kuphal (@jkphl), licensed under the terms of the MIT license
http://iconizr.com
MIT License
485 stars 36 forks source link

Use 'env' in shebang for enhanced portability #21

Closed pagelab closed 10 years ago

pagelab commented 10 years ago

'#!/usr/bin/env php' is more portable than '#!/usr/bin/php' at the top of the script. Some people have unusual configurations for PHP (MAMP on the Mac, for example). It's a minor, but useful change.

jkphl commented 10 years ago

Thx! ;)