diff options
author | Kyle D <kdumontnu@gmail.com> | 2021-01-27 11:15:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 17:15:39 +0100 |
commit | 4c6e0295069a3c2f0df3d9f30560906bc2aa73a8 (patch) | |
tree | c397cbfed988bc9b35d960f11649b118929cece3 /build | |
parent | 41c0776568b3fa1bf825439103085146260e16a8 (diff) | |
download | gitea-4c6e0295069a3c2f0df3d9f30560906bc2aa73a8.tar.gz gitea-4c6e0295069a3c2f0df3d9f30560906bc2aa73a8.zip |
Use gitea.svg for public/img/gitea-gitea.svg instead of logo.svg (#14479)
Diffstat (limited to 'build')
-rwxr-xr-x | build/generate-svg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/generate-svg.js b/build/generate-svg.js index 52d2c519ef..09e08e48dc 100755 --- a/build/generate-svg.js +++ b/build/generate-svg.js @@ -65,7 +65,7 @@ async function main() { await Promise.all([ ...processFiles('../node_modules/@primer/octicons/build/svg/*-16.svg', {prefix: 'octicon'}), ...processFiles('../web_src/svg/*.svg'), - ...processFiles('../assets/logo.svg', {fullName: 'gitea-gitea'}), + ...processFiles('../public/img/gitea.svg', {fullName: 'gitea-gitea'}), ]); } |