Skip to content

CF cache issue fix #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Nov 10, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
support ps in buildenv
  • Loading branch information
Gunasekar-K committed Oct 25, 2022
commit bdc3bd13dc606998135bd5b5cfe0b439cca14981
2 changes: 1 addition & 1 deletion buildenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ uploading_buildpsenvar()
echo $k
aws ssm get-parameters-by-path --path $k --query "Parameters[*].{Name:Name, Value:Value}" > paramnames.json
###paramnames=$(cat paramnames.json | jq -r .[].Name | rev | cut -d / -f 1 | rev)
for s in $(cat paramnames.json | jq -r .[] )
for s in $(cat paramnames.json | jq -c .[] )
do
varname=$(echo $s | jq -r .Name | rev | cut -d / -f 1 | rev)
varvalue=$(echo $s | jq -r .Value)
Expand Down