From 0df82b6b316db754171e9f03d9f5b171d24cb32e Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Mon, 29 Aug 2016 14:40:05 -0400 Subject: [PATCH] Change {} to `` for code highlighting --- ci/deploy_from_travis.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/deploy_from_travis.sh b/ci/deploy_from_travis.sh index f6ae070502..3f0f0641a9 100755 --- a/ci/deploy_from_travis.sh +++ b/ci/deploy_from_travis.sh @@ -9,8 +9,8 @@ git config user.email "$COMMIT_AUTHOR_EMAIL" git checkout --orphan gh-pages git rm --cached -r . echo "# Automatic build" > README.md -echo "Built website from {$SHA}. See https://github.com/ethereum/browser-solidity/ for details." >> README.md -echo "To use an offline copy, download browser-solidity-$SHA.zip." >> README.md +echo "Built website from \`$SHA\`. See https://github.com/ethereum/browser-solidity/ for details." >> README.md +echo "To use an offline copy, download \`browser-solidity-$SHA.zip\`." >> README.md # ZIP the whole directory zip -r browser-solidity-$SHA.zip $FILES_TO_PACKAGE # -f is needed because "build" is part of .gitignore