FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
code-oss/scripts/code-cli.sh at code-oss-esm · unlicense-code/code-oss · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
unlicense-code
/
code-oss
Public
forked from
lemanschik/code-oss
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
code-oss
/
scripts
/
code-cli.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
40 lines (33 loc) · 941 Bytes
Breadcrumbs
code-oss
/
scripts
/
code-cli.sh
Copy path
File metadata and controls
executable file
·
40 lines (33 loc) · 941 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
37
38
39
40
#!
/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
if
[[
"
$OSTYPE
"
==
"
darwin
"
*
]]
;
then
NAME=
`
node -p
"
require('./product.json').nameLong
"
`
CODE=
"
./.build/electron/
$NAME
.app/Contents/MacOS/Electron
"
else
NAME=
`
node -p
"
require('./product.json').applicationName
"
`
CODE=
"
.build/electron/
$NAME
"
fi
#
Get electron, compile, built-in extensions
if
[[
-z
"
${VSCODE_SKIP_PRELAUNCH}
"
]]
;
then
node build/lib/preLaunch.js
fi
#
Manage built-in extensions
if
[[
"
$1
"
==
"
--builtin
"
]]
;
then
exec
"
$CODE
"
build/builtin
return
fi
ELECTRON_RUN_AS_NODE=1 \
NODE_ENV=development \
VSCODE_DEV=1 \
ELECTRON_ENABLE_LOGGING=1 \
ELECTRON_ENABLE_STACK_DUMPING=1 \
"
$CODE
"
--inspect=5874
"
$ROOT
/out/cli.js
"
.
"
$@
"
}
code
"
$@
"
Back
|
FazBrowse Home
|
New Git URL