Skip to content

Instantly share code, notes, and snippets.

View julien1619's full-sized avatar

Julien Blatecky julien1619

View GitHub Profile
<?php
/**
* WExport.php
*/
defined('WITYCMS_VERSION') or die('Access denied');
// filter class that applies CRLF line endings
class crlf_filter extends php_user_filter
{
@julien1619
julien1619 / set_agv_ver.sh
Last active August 28, 2015 08:35 — forked from rob-murray/set_agv_ver.sh
Use agvtool to set Xcode project build number
#!/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