Skip to content

Commit

Permalink
Update container-action/scripts/configure_rit_locally.sh
Browse files Browse the repository at this point in the history
Applying suggestions from review

Co-authored-by: Lucas <[email protected]>
  • Loading branch information
2 people authored and marcos-iov committed Jul 31, 2024
1 parent fdde43e commit 2cf5cd9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion container-action/scripts/configure_rit_locally.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/bin/bash

POWPEG_VERSION="${1:-SNAPSHOT-6.3.0.0}"
if [ $# -ne 1 ] || [ -z "${1:-}" ]; then
echo "Usage: ${0##*/} POWPEG_VERSION" >&2
exit 1
fi
POWPEG_VERSION=$1
shift
echo "POWPEG_VERSION received as parameter: $1"

read -r -d '' SETTINGS_RIT <<EOF
Expand Down

0 comments on commit 2cf5cd9

Please sign in to comment.