Minor style updates.

This commit is contained in:
Eddie Antonio Santos 2018-11-22 09:23:37 -07:00
parent 678318aeb5
commit 18cdc19cd1
No known key found for this signature in database
GPG key ID: DD411EA4D9509D87

View file

@ -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!"