Skip to content

Instantly share code, notes, and snippets.

View necrose99's full-sized avatar

Michael L. necrose99

View GitHub Profile
@necrose99
necrose99 / gist:8b159da197ad5b64a753
Created July 23, 2015 23:52
GoogleCloudPlatform/compute-sabayon-image-builder
https://github.com/GoogleCloudPlatform/compute-sabayon-image-builder
# This is a general-purpose function to ask Yes/No questions in Bash, either
# with or without a default answer. It keeps repeating the question until it
# gets a valid answer.
ask() {
# http://djm.me/ask
while true; do
if [ "${2:-}" = "Y" ]; then
prompt="Y/n"
@necrose99
necrose99 / vup
Last active August 29, 2015 14:18 — forked from alexander-bauer/vup
#!/bin/bash
# This script bumps the version number of a Go project. The variable "Version"
# should be declared as a constant in the file that matches the name of the
# project. For example, a project contained in example/ should declare Version
# in example.go.
#
# To use: vup <level>
#
# <level> is the depth of the bump, determined by number of periods
# to the left of the number. For example, bumping v1 to v2 is a level