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
trajan:~$ brew --config | |
HOMEBREW_VERSION: 0.8 | |
HEAD: 72b2570c02cabd8330387a37ee9b3c566a065997 | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
HOMEBREW_REPOSITORY: /usr/local | |
HOMEBREW_LIBRARY_PATH: /usr/local/Library/Homebrew | |
Hardware: quad-core 64-bit arrandale | |
OS X: 10.6.7 | |
Kernel Architecture: i386 |
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
==> Downloading http://www.cityinthesky.co.uk/_media/opensource/pdf2svg-0.2.1.tar.gz | |
File already downloaded and cached to /Users/drew/Library/Caches/Homebrew | |
/usr/bin/tar xf /Users/drew/Library/Caches/Homebrew/pdf2svg-0.2.1.tar.gz | |
==> ./configure --prefix=/usr/local/Cellar/pdf2svg/0.2.1 --disable-debug --disable-dependency-tracking | |
./configure --prefix=/usr/local/Cellar/pdf2svg/0.2.1 --disable-debug --disable-dependency-tracking | |
checking for a BSD-compatible install... /usr/local/bin/ginstall -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p | |
checking for gawk... no | |
checking for mawk... no |
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
#!/usr/bin/env perl | |
# Drew Stephens <[email protected]> | |
# 2011-02-11 | |
# | |
# Perform an action on all Git repos given on the command line, or globbed. | |
# | |
# Check the status of all Git repos in this directory: | |
# gitall.pl status | |
# | |
# Check the status of the Git repos "foo" and "bar" in this directory: |
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
#!/usr/bin/env perl | |
# Drew Stephens <[email protected]> | |
# 2010-12-17 | |
# | |
# Stash local changes before doing `git svn rebase` | |
use strict; | |
use warnings; | |
my $applyStash = 0; |
NewerOlder