Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pcaskey committed Jul 17, 2017
1 parent 99a4a6a commit 698be58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configBuilder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,10 @@ echo ""
echo "Creating sanitized config for hybrid build..."
echo ""
destPath=./ConfigNoSecrets
#cp -rf `realpath ${PWD}`/. $destPath >/dev/null 2>>/dev/null
rsync -a . ./testCPNS --exclude ${destPath}
destPathName=ConfigNoSecrets
# check for rsync
command -v rsync >/dev/null 2>&1 || { echo >&2 "ERROR: rsync is required, but doesn't appear to be installed. Aborting..."; exit 1; }
rsync -a . ${destPath} --exclude ${destPathName}
mkdir -p ./${destPath}/SECRETS

# move secrets
Expand Down

0 comments on commit 698be58

Please sign in to comment.