vscode-extensions: some tweaks to comments (#100282)

This commit is contained in:
Gabor Greif 2021-01-18 18:50:26 +01:00 committed by GitHub
parent 5d55162e2a
commit 32cf0e38a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ function fail() {
exit 1
}
# Helper to clean up after ourself if we're killed by SIGINT
# Helper to clean up after ourselves if we're killed by SIGINT.
function clean_up() {
TDIR="${TMPDIR:-/tmp}"
echo "Script killed, cleaning up tmpdirs: $TDIR/vscode_exts_*" >&2
@ -18,7 +18,7 @@ function clean_up() {
function get_vsixpkg() {
N="$1.$2"
# Create a tempdir for the extension download
# Create a tempdir for the extension download.
EXTTMP=$(mktemp -d -t vscode_exts_XXXXXXXX)
URL="https://$1.gallery.vsassets.io/_apis/public/gallery/publisher/$1/extension/$2/latest/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage"
@ -32,7 +32,7 @@ function get_vsixpkg() {
# Clean up.
rm -Rf "$EXTTMP"
# I don't like 'rm -Rf' lurking in my scripts but this seems appropriate
# I don't like 'rm -Rf' lurking in my scripts but this seems appropriate.
cat <<-EOF
{
@ -44,7 +44,7 @@ function get_vsixpkg() {
EOF
}
# See if can find our code binary somewhere.
# See if we can find our `code` binary somewhere.
if [ $# -ne 0 ]; then
CODE=$1
else