All gists

waja
Last active 3 months ago
0 0 1
1 if [ "$TERM" != "dumb" ]; then
2 if [[ "$OSTYPE" == "darwin"* ]]; then
3 # For ls colors in Solarized theme
4 # https://github.com/seebi/dircolors-solarized/issues/10
5 export LSCOLORS=gxfxbEaEBxxEhEhBaDaCaD
6 # source git completion
7 if [ -f /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-completion.bash ]; then
8 . /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-completion.bash
9 fi
10 source /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-prompt.sh
waja
Last active 3 months ago
0 0 1
1 --- /usr/bin/mk-sbuild 2013-10-14 22:02:00.000000000 +0200
2 +++ /tmp/mk-sbuild 2013-11-24 22:56:49.000000000 +0100
3 @@ -618,7 +618,11 @@
4 sudo mkdir -p -m 0700 "$MNT"/root/.gnupg
5
6 # debootstrap the chroot
7 -sudo ${proxy:+"http_proxy=${proxy}"} "$DEBOOTSTRAP_COMMAND" --arch="$CHROOT_ARCH" $variant_opt $debootstrap_opts "$RELEASE" "$MNT" "${DEBOOTSTRAP_MIRROR:-http://archive.ubuntu.com/ubuntu}"
8 +if [ "$CHROOT_ARCH" = "armhf" ]; then
9 + sudo ${proxy:+"http_proxy=${proxy}"} "$DEBOOTSTRAP_COMMAND" --arch="$CHROOT_ARCH" $variant_opt $debootstrap_opts "$RELEASE" "$MNT" "${DEBOOTSTRAP_MIRROR:-http://archive.ubuntu.com/ubuntu}" "${DEBOOTSTRAP_KEYRING}"
10 +else