mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-05 23:27:40 +00:00
Minor style updates.
This commit is contained in:
parent
678318aeb5
commit
18cdc19cd1
1 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# Fails the build if a specified file does not exist.
|
||||
assert ( ) {
|
||||
if ! [ -f $1 ]; then
|
||||
if ! [ -f "$1" ]; then
|
||||
fail "Build failed."
|
||||
exit 1
|
||||
fi
|
||||
|
|
@ -40,7 +40,7 @@ fail ( ) {
|
|||
# To get the inner source code, include the file generated by this function,
|
||||
# then use name.toString() where `name` is the name passed into this
|
||||
# function.
|
||||
wrap_worker_code() {
|
||||
wrap_worker_code ( ) {
|
||||
name="$1"
|
||||
js="$2"
|
||||
echo "// Autogenerated code. Do not modify!"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue