Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #20 from nanliu/pluginsync
Browse files Browse the repository at this point in the history
Update from Intelsdi-x pluginsync 0.1.5
  • Loading branch information
candysmurf committed Sep 19, 2016
2 parents 04e5743 + 44f1590 commit 3581191
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pluginsync.yml
@@ -1,4 +1,4 @@
pluginsync_config: '0.1.4'
pluginsync_config: '0.1.5'
managed_files:
- .github
- .github/ISSUE_TEMPLATE.md
Expand Down
6 changes: 5 additions & 1 deletion scripts/pre_deploy.sh
Expand Up @@ -40,7 +40,7 @@ set +u
if [ -z "$TRAVIS_TAG" ]; then
set -u
git_path="${s3_path}/${git_sha}"
latest_path="${s3_path}/latest"
latest_path="${s3_path}/latest_build"
mkdir -p "${git_path}"
mkdir -p "${latest_path}"

Expand All @@ -51,10 +51,14 @@ if [ -z "$TRAVIS_TAG" ]; then
else
set -u
tag_path="${s3_path}/${TRAVIS_TAG}"
latest_path="${s3_path}/latest"
mkdir -p "${tag_path}"
mkdir -p "${latest_path}"

_info "copying plugin binaries to ${tag_path}"
cp -rp "${build_path}/"* "${tag_path}"
_info "copying plugin binaries to ${latest_path}"
cp -rp "${build_path}/"* "${latest_path}"
fi

release_path="${SNAP_PATH:-"${__proj_dir}/release"}"
Expand Down

0 comments on commit 3581191

Please sign in to comment.