Skip to content

Commit

Permalink
Add missing quotes for description in import-snapshot command
Browse files Browse the repository at this point in the history
  • Loading branch information
fte378 committed Jun 2, 2019
1 parent 1933f50 commit 141b2ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion obsd-img-builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ create_ami() {
#aws ec2 import-image --description "${DESCR}" --disk-containers \
# file://"${_WRKDIR}/containers.json"

_importsnapid=$(aws ec2 import-snapshot --description ${DESCR} \
_importsnapid=$(aws ec2 import-snapshot --description "${DESCR}" \
--disk-container file://"${_WRKDIR}/containers.json" \
--role-name ${_IMGNAME} --query "ImportTaskId" --output text)

Expand Down

0 comments on commit 141b2ab

Please sign in to comment.