This file contains 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
#!/bin/bash | |
# | |
# Use agvtool to set Xcode project version number, bump build number and create git tag | |
# Note: requires Xcode project configured to use Apple Generic Versioning and git | |
# | |
# Usage: set_agv_ver.sh 1.1.0 | |
# | |
# src: https://gist.github.com/julien1619/5672496ec97c13626c05 | |
# forked from: https://gist.github.com/rob-murray/8644974 |
This file contains 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
<?php | |
/** | |
* WExport.php | |
*/ | |
defined('WITYCMS_VERSION') or die('Access denied'); | |
// filter class that applies CRLF line endings | |
class crlf_filter extends php_user_filter | |
{ |