File tree Expand file tree Collapse file tree 5 files changed +6
-1
lines changed Expand file tree Collapse file tree 5 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 14
14
<owners >Chakra Team</owners >
15
15
<license type =" file" >LICENSE.txt</license >
16
16
<projectUrl >https://github.com/Microsoft/ChakraCore</projectUrl >
17
+ <icon >icon.png</icon >
18
+ <iconUrl >https://raw.githubusercontent.com/chakra-core/ChakraCore/master/Build/NuGet/icon.png</iconUrl >
17
19
<requireLicenseAcceptance >false</requireLicenseAcceptance >
18
20
<developmentDependency >true</developmentDependency >
19
21
<copyright >© Microsoft Corporation. All rights reserved.</copyright >
20
22
<language >en-US</language >
21
23
</commonMetadataElements >
22
24
<commonFileElements >
25
+ <file src =" ..\icon.png" target =" icon.png" />
23
26
<file src =" ..\..\..\LICENSE.txt" target =" " />
24
27
</commonFileElements >
25
28
</commonProperties >
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ git diff --name-only `git merge-base origin/master HEAD` HEAD |
43
43
grep -v -E ' \.man$' |
44
44
grep -v -E ' \.testconfig$' |
45
45
grep -v -E ' \.proj$' |
46
+ grep -v -E ' \.png$' |
46
47
grep -v -E ' packages.config$' |
47
48
grep -v -E ' lib/wabt/.*' |
48
49
grep -v -E ' test/WasmSpec.*$' |
Original file line number Diff line number Diff line change 16
16
ERRFILE=check_eol.sh.err
17
17
rm -f $ERRFILE
18
18
19
- git diff --name-only ` git merge-base origin/master HEAD` HEAD | grep -v -E " (test/.*\\ .js|\\ .cmd|\\ .baseline|\\ .wasm|\\ .wast|\\ .vcxproj|\\ .vcproj|\\ .sln|\\ .man)" | xargs -I % ./tools/StyleChecks/check_file_eol.sh %
19
+ git diff --name-only ` git merge-base origin/master HEAD` HEAD | grep -v -E " (test/.*\\ .js|\\ .cmd|\\ .baseline|\\ .wasm|\\ .wast|\\ .vcxproj|\\ .vcproj|\\ .sln|\\ .man| \\ .png )" | xargs -I % ./tools/StyleChecks/check_file_eol.sh %
20
20
21
21
if [ -e $ERRFILE ]; then # if error file exists then there were errors
22
22
>&2 echo " --------------" # leading >&2 means echo to stderr
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ git diff --name-only `git merge-base origin/master HEAD` HEAD |
28
28
grep -v -E ' \.baseline$' |
29
29
grep -v -E ' \.wasm$' |
30
30
grep -v -E ' \.wast$' |
31
+ grep -v -E ' \.png$' |
31
32
grep -v -E ' ^lib/wabt' |
32
33
grep -v -E ' bin/External/.*$' |
33
34
xargs -I % sh -c ' echo --- IN FILE % ---; git blame HEAD -- % | grep -P "(\t|--- IN FILE)"' > check_tabs.sh.err
You can’t perform that action at this time.
0 commit comments