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 | |
git remote | while read -r REMOTE ; do | |
echo "Converting remote '$REMOTE' to HTTPS" | |
git remote set-url $REMOTE $(git remote show $REMOTE | grep "Fetch URL" | sed 's/ *Fetch URL: //' | sed 's/[email protected]:/https:\/\/github.com\//') | |
done |
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 | |
set -e; | |
set -o pipefail; | |
set -x; | |
: ${GODOT_SOURCE_ROOT:?Variable GODOT_SOURCE_ROOT not set or empty} | |
: ${MONO_INSTALLS_DIR:=${HOME}/mono-installs} |
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 | |
ldc2 -wi -v -c test.d |
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 | |
set -e; | |
set -o pipefail; | |
set -x; | |
: ${GODOT_SOURCE_ROOT:?Variable GODOT_SOURCE_ROOT not set or empty} | |
: ${MONO_INSTALLS_DIR:=${HOME}/mono-installs} |
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/python | |
from os import environ | |
from os.path import exists as path_exists, join as path_join, isfile, isdir, abspath | |
from sys import exit | |
class MonoBuildError(Exception): | |
'''Generic exception for custom build errors''' | |
def __init__(self, msg): |
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 | |
set -e; | |
set -o pipefail; | |
set -x; | |
: ${GODOT_SOURCE_ROOT:?Variable GODOT_SOURCE_ROOT not set or empty} | |
: ${MONO_SOURCE_ROOT:?Variable MONO_SOURCE_ROOT not set or empty} |
NewerOlder