FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vscode/scripts/code-web.sh at master · git2u/vscode · GitHub
git2u
/
vscode
Public
forked from
microsoft/vscode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
vscode
/
scripts
/
code-web.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
27 lines (20 loc) · 497 Bytes
Breadcrumbs
vscode
/
scripts
/
code-web.sh
Copy path
File metadata and controls
executable file
·
27 lines (20 loc) · 497 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!
/usr/bin/env bash
if
[[
"
$OSTYPE
"
==
"
darwin
"
*
]]
;
then
realpath
() { [[
$1
=
/
*
]]
&&
echo
"
$1
"
||
echo
"
$PWD
/
${1
#
.
/
}
"
;
}
ROOT=
$(
dirname
$(
dirname
$(
realpath
"
$0
"
)
)
)
else
ROOT=
$(
dirname
$(
dirname
$(
readlink -f
$0
)
)
)
fi
function
code()
{
cd
$ROOT
#
Sync built-in extensions
yarn download-builtin-extensions
NODE=
$(
node build/lib/node.js
)
if
[
!
-e
$NODE
]
;
then
#
Load remote node
yarn gulp node
fi
NODE=
$(
node build/lib/node.js
)
$NODE
./scripts/code-web.js
"
$@
"
}
code
"
$@
"
Back
|
FazBrowse Home
|
New Git URL