FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vscode/scripts/code.sh at master · SuperCoderX/vscode · GitHub
SuperCoderX
/
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.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
36 lines (28 loc) · 762 Bytes
Breadcrumbs
vscode
/
scripts
/
code.sh
Copy path
File metadata and controls
executable file
·
36 lines (28 loc) · 762 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
28
29
30
31
32
33
34
35
36
#!
/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
#
Node modules
test
-d node_modules
||
./scripts/npm.sh install
#
Get electron
./node_modules/.bin/gulp electron
#
Build
test
-d out
||
./node_modules/.bin/gulp compile
#
Configuration
export
NODE_ENV=development
export
VSCODE_DEV=1
export
ELECTRON_ENABLE_LOGGING=1
export
ELECTRON_ENABLE_STACK_DUMPING=1
#
Launch Code
if
[[
"
$OSTYPE
"
==
"
darwin
"
*
]]
;
then
exec
./.build/electron/Electron.app/Contents/MacOS/Electron
.
"
$@
"
else
exec
./.build/electron/electron
.
"
$@
"
fi
}
code
"
$@
"
Back
|
FazBrowse Home
|
New Git URL