Remove print statement
This commit is contained in:
@@ -30,8 +30,8 @@ Sadly Sublime doesn't allow for querying of currently chosen build system.
|
|||||||
Neither does it allow for effective hook into the builtin ```build``` command
|
Neither does it allow for effective hook into the builtin ```build``` command
|
||||||
with custom arguments as such this package needs to emulate the ```build``` command.
|
with custom arguments as such this package needs to emulate the ```build``` command.
|
||||||
|
|
||||||
To make it so that you can build before debugging you need to firstly change
|
To make it so that you can build before debugging you need to: firstly change
|
||||||
```Remedy.sublime-settings``` secondly, you need to have
|
```Remedy.sublime-settings```, secondly you need to have
|
||||||
a project / project file. That project file needs a build system, if there
|
a project / project file. That project file needs a build system, if there
|
||||||
is only one build system, everything is going to work. If there are more,
|
is only one build system, everything is going to work. If there are more,
|
||||||
you will need to add a field called ```remedy_build_system```, here is an example:
|
you will need to add a field called ```remedy_build_system```, here is an example:
|
||||||
|
|||||||
@@ -347,7 +347,6 @@ class RemedyBuildCommand(ExecCommand):
|
|||||||
if kwargs.get(key) != None:
|
if kwargs.get(key) != None:
|
||||||
kwargs[key] = sublime.expand_variables(kwargs[key], variables)
|
kwargs[key] = sublime.expand_variables(kwargs[key], variables)
|
||||||
|
|
||||||
print(os.environ)
|
|
||||||
for key in os.environ.keys():
|
for key in os.environ.keys():
|
||||||
if key not in kwargs["env"]:
|
if key not in kwargs["env"]:
|
||||||
kwargs["env"][key] = os.environ[key]
|
kwargs["env"][key] = os.environ[key]
|
||||||
|
|||||||
Reference in New Issue
Block a user