File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ def plugin_loaded():
18
18
from package_control import events
19
19
print ('got events' )
20
20
print (events )
21
- if events .install ('OmniSharp.OmniSharpSublime ' ):
21
+ if events .install ('OmniSharp' ):
22
22
print ('Installing OmniSharp' )
23
23
if os .name == 'posix' :
24
24
# give the launch script executable permissions
25
25
os .chmod ('PrebuiltOmniSharpServer/omnisharp' , st .st_mode | 0o111 )
26
- elif events .post_upgrade ('OmniSharp.OmniSharpSublime ' ):
26
+ elif events .post_upgrade ('OmniSharp' ):
27
27
print ('Upgrading OmniSharp' )
28
28
if os .name == 'posix' :
29
29
# give the launch script executable permissions
@@ -33,7 +33,7 @@ def plugin_loaded():
33
33
def plugin_unloaded ():
34
34
from package_control import events
35
35
36
- if events .pre_upgrade ('OmniSharp.OmniSharpSublime ' ):
36
+ if events .pre_upgrade ('OmniSharp' ):
37
37
print ('About to upgrade OmniSharp' )
38
38
if os .name != 'posix' :
39
39
# kill the exe before the update complains about exe in use
You can’t perform that action at this time.
0 commit comments