Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ cmd/updater/updater
tmp/dev_pkg
tmp/out
tmp/node_pkgs
tmp/go-cache

# Ignore vim backup and swap files
*~
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ TOOLS_ROOT=${PKG_ROOT}/tools

echo "Staging tools package files"

bin_files=("algons" "coroner" "dispenser" "netgoal" "nodecfg" "pingpong" "cc_service" "cc_agent" "cc_client" "loadgenerator" "COPYING" "dsign")
bin_files=("algons" "coroner" "dispenser" "netgoal" "nodecfg" "pingpong" "cc_service" "cc_agent" "cc_client" "loadgenerator" "COPYING" "dsign" "catchpointdump")
mkdir -p ${TOOLS_ROOT}
for bin in "${bin_files[@]}"; do
cp ${GOPATHBIN}/${bin} ${TOOLS_ROOT}
Expand Down
3 changes: 2 additions & 1 deletion scripts/create_and_deploy_recipe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ if [[ "${AWS_ACCESS_KEY_ID}" = "" || "${AWS_SECRET_ACCESS_KEY}" = "" ]]; then
fi

SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
export GOPATH=$(go env GOPATH)
GOPATH=$(go env GOPATH)
export GOPATH=${GOPATH%:*}

# Anchor our repo root reference location
REPO_ROOT=${SCRIPTPATH}/..
Expand Down