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
https://github.com/GoogleCloudPlatform/compute-sabayon-image-builder |
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
# 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" |
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 | |
# 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 |
NewerOlder