mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Avoid using variables in printf format string
This commit is contained in:
parent
90735661fe
commit
78a2e6a930
1 changed files with 3 additions and 1 deletions
|
@ -11,7 +11,9 @@ shopt -s failglob
|
|||
|
||||
|
||||
usage() {
|
||||
printf "usage: ${0} android|linux|mac|macbrew|windows-gnu|windows-msvc\n"
|
||||
printf \
|
||||
"usage: %s android|linux|mac|macbrew|windows-gnu|windows-msvc\n" \
|
||||
"${0}"
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue