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
175,176c175,177 | |
< const fileRealPath = extfs.realpathSync(filePath); | |
< if (!data.files[fileRealPath]) { | |
--- | |
> const { files, totals } = data; | |
> | |
> if ( !totals.errors && !totals.warnings) { | |
179c180,184 | |
< ({ messages } = data.files[fileRealPath]); | |
--- |
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/sh | |
# A script that leverages Trac XML-RPC (I know, I know) to upload patches. | |
# | |
# This script is written specifically for the Mac, in that it reads from | |
# your keychain to derive your SVN password. You can change the SVN_PASS | |
# line below if you wanted to pull from ~/.svn/ or what not. | |
# | |
# Basic usage: `trac-attach.sh 12345` uploads a patch to ticket #12345, | |
# using the name 12345.diff. If there exists a 12345.diff, the patch is |
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 # -*- coding: utf-8 -*- | |
/** | |
* Plugin Name: T5 Fresh Editor Stylesheets | |
* Description: Enforces fresh editor stylesheets per version parameter. | |
* Version: 2012.08.09 | |
* Author: Thomas Scholz | |
* Plugin URI: http://toscho.de/?p=1965 | |
* Author URI: http://toscho.de | |
* License: MIT | |
* License URI: http://www.opensource.org/licenses/mit-license.php |