We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2f5384 + 044eeed commit 93a59f7Copy full SHA for 93a59f7
1 file changed
build.py
@@ -26,7 +26,6 @@
26
import platform
27
import sublime
28
import sublime_plugin
29
-
30
from subprocess import Popen
31
32
SUMMIT_PLUGIN_PATH = os.path.split(os.path.abspath(__file__))[0]
@@ -51,8 +50,13 @@ def build(self, opts=[]):
51
50
"Unable to determine operating system or platform '{0}' not supported.".format(self.platform))
52
return
53
+ if self.platform != 'windows':
54
+ bash = 'bash'
55
+ else:
56
+ bash = os.path.expanduser("~\\AppData\\Local\\Programs\\Git\\git-bash.exe")
57
+
58
cmd = [
- 'bash',
59
+ bash,
60
"{}{}simulate_{}.sh".format(SUMMIT_PLUGIN_PATH, os.path.sep, self.platform),
61
self.build_path,
62
self.SUMMIT_SETTINGS.get("summit_simulator_host", "code.corvisacloud.com"),
0 commit comments