Skip to content

Commit 601da5a

Browse files
committed
refactor: single quotes
1 parent 96ee34e commit 601da5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/make-chrome.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
# This script builds the extension for the Chrome browser.
55
#
66
##
7-
echo "Building Web Search Navigator for Chrome"
7+
echo 'Building Web Search Navigator for Chrome'
88

99
# copy the sources into the working directory
1010
BIN=build/chrome
1111
OBJ="$BIN/obj"
12-
echo "Copying files..."
12+
echo 'Copying files...'
1313

1414
# cleanup the previous build
1515
rm -rf "$OBJ"
1616
mkdir -p "$OBJ"
1717

1818
cp -R src/* "$OBJ"
1919

20-
echo "Creating package..."
20+
echo 'Creating package...'
2121
zip -FSj "$BIN/package.zip" $OBJ/*
2222

23-
echo "Build complete"
23+
echo 'Build complete'

0 commit comments

Comments
 (0)