You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Often times I run a script via buildevents cmd in a directory other than my workspace root, but the command doesn't find the buildevents.txt file because the value of $BUILDEVENTS_FILE is ../buildevents.txt. It should be an absolute path instead by default to allow easily using this from any working directory.
The text was updated successfully, but these errors were encountered:
Could just replace it with envPath = path.resolve('../buildevents.txt'). That way we'll use the exact same path we're using now, and work just fine with custom runners with their own file structure.
Often times I run a script via
buildevents cmd
in a directory other than my workspace root, but the command doesn't find thebuildevents.txt
file because the value of$BUILDEVENTS_FILE
is../buildevents.txt
. It should be an absolute path instead by default to allow easily using this from any working directory.The text was updated successfully, but these errors were encountered: