diff --git a/scripts/cask-update.sh b/scripts/cask-update.sh index 6e75a5f3d2..2a22cca1d3 100644 --- a/scripts/cask-update.sh +++ b/scripts/cask-update.sh @@ -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 )" diff --git a/scripts/choco-pack.ps1 b/scripts/choco-pack.ps1 index 9c4344f8a0..04f2827d58 100644 --- a/scripts/choco-pack.ps1 +++ b/scripts/choco-pack.ps1 @@ -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";