Add “.exe” suffix to the Windows compiled executable program for skywalking-eyes and skywalking-infra-e2e #7844
codeglzhang
started this conversation in
General
Replies: 2 comments
-
Created issue #7845 to track the issue @codeglzhang |
Beta Was this translation helpful? Give feedback.
0 replies
-
@codeglzhang I adjusted #7845 to set up scope as |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In skywalking-infra-e2e, we can use


make build
to get a Windows executable programskywalking-eyes\bin\windows\license-eye
. However, in the command line of Windows, whether the file is an executable program is determined by whether the file has a specific suffix, such as ".exe". Thus, commands such asbin/darwin/license-eye -c test/testdata/.licenserc_for_test_fix.yaml header check
will not be executed correctly under Windows.After renaming the file
skywalking-eyes\bin\windows\license-eye
toskywalking-eyes\bin\windows\license-eye.exe
, the command is executed.The same is true for
skywalking-infra-e2e
.Beta Was this translation helpful? Give feedback.
All reactions