We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c6508 commit bebecd3Copy full SHA for bebecd3
build/entrypoint.sh
@@ -20,6 +20,13 @@ CMD=("${guidellm_bin}" "benchmark")
20
for var in $args; do
21
# Remove GUIDELLM_ prefix
22
arg_name="${var#GUIDELLM_}"
23
+
24
+ # If there is an extra underscore at the
25
+ # start than this is a config variable
26
+ if [ "${arg_name:0:1}" == "_" ]; then
27
+ continue
28
+ fi
29
30
# Convert to lowercase
31
arg_name="${arg_name,,}"
32
# Replace underscores with dashes
0 commit comments