FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
vscode/scripts/code.sh at master · cloudstdio/vscode · GitHub
cloudstdio
/
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
·
23 lines (19 loc) · 581 Bytes
Breadcrumbs
vscode
/
scripts
/
code.sh
Copy path
File metadata and controls
executable file
·
23 lines (19 loc) · 581 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
#!
/bin/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
#
Configuration
export
NODE_ENV=development
export
VSCODE_DEV=1
export
ELECTRON_ENABLE_LOGGING=1
export
ELECTRON_ENABLE_STACK_DUMPING=1
#
Prepare
cd
$ROOT
;
node node_modules/gulp/bin/gulp.js electron
if
[[
"
$OSTYPE
"
==
"
darwin
"
*
]]
;
then
cd
$ROOT
;
../Electron-Build/Electron.app/Contents/MacOS/Electron
.
$*
else
cd
$ROOT
;
../Electron-Build/electron
.
$*
fi
Back
|
FazBrowse Home
|
New Git URL