This file contains hidden or 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 | |
# Really crappy script that works to delete private packages stored on Github Packages | |
# Intended to simplify deleting packages that are counting against your limit | |
# By Troy Fontaine (github.com/troyfontaine) | |
# First displays the private packages name then the version finally the ID needed to delete it | |
# Then prompts you if you want to delete the packages based on the ID | |
GITHUB_TOKEN=$SUPERSECRETTOKEN | |
REPO_OWNER=$YOURGITHUBUSERNAME |
This file contains hidden or 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 bash | |
# ----------------------------------------------------------------------------- | |
# Safety settings (see https://gist.github.com/ilg-ul/383869cbb01f61a51c4d). | |
if [[ ! -z ${DEBUG} ]] | |
then | |
set -x # Activate the expand mode if DEBUG is anything but empty. | |
fi |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. |