forked from bazelbuild/bazel-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97aee99
commit ea225fe
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ea225fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These all look very reasonable. Do you know what the plan is to set workspace status command have a Windows value and a non Windows value? Is it possible, for example, for that to be a target in the repository? Then we could use select to figure out the correct files to run
ea225fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, you cannot use select on
--workspace_status_command
. The best I can think of that would work on both platform is using a python script. eg.--workspace_status_command="python tools/worksplace_status.py"
ea225fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we know that python is going to be available on all systems? I would hate to rewrite it into python only to find out that adds a hard dependency on python that was otherwise unnecessary.