Skip to content

Commit

Permalink
Merge pull request #552 from furlongm/missing-brace
Browse files Browse the repository at this point in the history
add missing brace to client
  • Loading branch information
furlongm authored Jan 5, 2024
2 parents 491da2b + de8bc36 commit bad2a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/patchman-client
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ get_enabled_modules() {
module_stream=$(echo ${module_info} | grep Stream | cut -d : -f 2 | sed -e 's/ \[.*//g' | awk '{$1=$1};1')
module_version=$(echo ${module_info} | grep Version | cut -d : -f 2 | awk '{$1=$1};1')
module_context=$(echo ${module_info} | grep Context | cut -d : -f 2 | awk '{$1=$1};1')
module_packages=$(echo $module_info} | sed -n '/Artifacts/,$p' | grep -v Hint | sed -e 's/.* : //g' | grep -v ^$)
module_packages=$(echo ${module_info} | sed -n '/Artifacts/,$p' | grep -v Hint | sed -e 's/.* : //g' | grep -v ^$)
OLDIFS=${IFS}
IFS="
"
Expand Down

0 comments on commit bad2a7d

Please sign in to comment.