~bzr/ubuntu/karmic/bzr-explorer/bzr-ppa

« back to all changes in this revision

Viewing changes to run-explorer-win32.js

  • Committer: Gary van der Merwe
  • Date: 2010-08-19 10:42:34 UTC
  • mfrom: (311.41.21 trunk)
  • Revision ID: garyvdm@gmail.com-20100819104234-ohry89iye8n81iyy
MergeĀ upstreamĀ releaseĀ 1.1beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Run Bazaar Explorer on Windows with hidden command-line shell window */
 
2
var WS_HIDDEN = 0;
 
3
var shell = WScript.CreateObject("WScript.Shell");
 
4
shell.Run("cmd /c bzr.exe explorer", WS_HIDDEN);