Skip to content

Commit

Permalink
fix quoting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Oct 2, 2024
1 parent 16ae313 commit 423890e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
docker tag localhost:5000/$dock_image $dock_image
script=$(docker inspect --format '{{ (index .Config.Cmd 0) }}' $dock_image)
docker run --rm $dock_image $script --json \
| jq '. += {"name":"pl-topologicalcopy", "dock_image": "$dock_image", "public_repo": "$repo" }' \
| jq '. += {"name":"pl-topologicalcopy", "dock_image": "'$dock_image'", "public_repo": "'$repo'" }' \
> /tmp/description.json
json="$(docker run --rm $dock_image $script --json)"
# Escape single quotes
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name = 'topologicalcopy',
version = '1.0.8',
version = '1.0.9',
description = 'A plugin ts app to copy filtered output dirs from a list of plugin instances',
long_description = readme,
author = 'FNNDSC',
Expand Down

0 comments on commit 423890e

Please sign in to comment.