Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add runas as devDependencies, or the python script will install it again... #1275

Merged
merged 1 commit into from
Mar 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
{
"name": "atom-shell",
"version": "0.22.1",

"licenses": [
{
"type": "MIT",
"url": "http://github.com/atom/atom-shell/raw/master/LICENSE.md"
}
],

"devDependencies": {
"atom-package-manager": "0.144.0",
"asar": "0.2.2",
"atom-package-manager": "0.144.0",
"coffee-script": "~1.7.1",
"coffeelint": "~1.3.0",
"request": "*"
"request": "*",
"runas": "^2.0.0"
},

"private": true,

"scripts": {
"preinstall": "node -e 'process.exit(0)'"
}
Expand Down
10 changes: 0 additions & 10 deletions script/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ def main():
update_submodules()
update_node_modules('.')
bootstrap_brightray(args.url)
if sys.platform in ['win32', 'cygwin']:
install_runas()

create_chrome_version_h()
touch_config_gypi()
Expand Down Expand Up @@ -96,14 +94,6 @@ def update_win32_python():
if not os.path.exists('python_26'):
execute_stdout(['git', 'clone', PYTHON_26_URL])


def install_runas():
# TODO This is needed by the tools/win/register_msdia80_dll.js, should move
# this to a better place.
with scoped_cwd(os.path.join(SOURCE_ROOT, 'tools', 'win')):
execute_stdout([NPM, 'install', 'runas'])


def create_chrome_version_h():
version_file = os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor',
'libchromiumcontent', 'VERSION')
Expand Down
11 changes: 8 additions & 3 deletions tools/win/register_msdia80_dll.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ var fs = require('fs');
var path = require('path');
var runas = require('runas');

/* FIXME: C:\\Program Files\\ should comes from env variable
And for 32 bit msdia80 is should be placed at %ProgramFiles(x86)% */
var source = path.resolve(__dirname, '..', '..', 'vendor', 'breakpad', 'msdia80.dll');
var target = 'C:\\Program Files\\Common Files\\Microsoft Shared\\VC\\msdia80.dll';
if (fs.existsSync(target))
return;

var copy = 'copy "' + source + '" "' + target + '"';
var register = 'regsvr32 "' + target + '"';
runas('cmd', ['/K', copy + ' & ' + register + ' & exit']);
runas('cmd', ['/K',
'copy', source, target,
'&', 'regsvr32', '/s', target,
'&', 'exit'],
{admin:true}
);