update script instructions

This commit is contained in:
Kyle Spearrin 2018-04-19 20:28:35 -04:00
parent 3f91070e96
commit 403151951c
2 changed files with 13 additions and 1 deletions

View File

@ -5,6 +5,11 @@ set -e
# 1. brew install jq
# 2. fork of homebrew-cask repo setup.
# see https://github.com/caskroom/homebrew-cask/blob/master/CONTRIBUTING.md#getting-set-up-to-contribute
#
# To run:
# sh ./cask-update.sh
#
# then submit PR from fork repo
FORK_GITHUB_USER="kspearrin"
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

View File

@ -1,4 +1,11 @@
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
# To run:
# .\choco-pack.ps1
#
# and then push to choco with:
# cd ..\dist\chocolatey
# choco push
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
$rootDir = $dir + "\..";
$distDir = $rootDir + "\dist";
$chocoDir = $rootDir + "\stores\chocolatey";