Skip to content
This repository has been archived by the owner on Jul 30, 2019. It is now read-only.

Commit

Permalink
Fix removal of unnecessary files for SonarQube >=5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Aug 31, 2015
1 parent 81d37a5 commit 18719fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion deb/build.sh
Expand Up @@ -35,7 +35,8 @@ mv tmp/opt/sonarqube-${VER}/ tmp/opt/sonar/
rm -rv tmp/opt/sonar/bin/windows*
rm -rv tmp/opt/sonar/bin/solaris*
rm -rv tmp/opt/sonar/bin/macosx*
rm -rv tmp/opt/sonar/bin/linux-ppc*
# Removed from official distribution in 5.1:
rm -rv tmp/opt/sonar/bin/linux-ppc* || true

# Fix EOL in configuration files
for i in tmp/opt/sonar/conf/* ; do
Expand Down
3 changes: 2 additions & 1 deletion rpm/SPECS/sonar.spec
Expand Up @@ -40,7 +40,8 @@ rm -rf %{buildroot}
rm -rv bin/windows*
rm -rv bin/solaris*
rm -rv bin/macosx*
rm -rv bin/linux-ppc*
# Removed from official distribution in 5.1:
rm -rv bin/linux-ppc* || true

# Fix EOL in configuration files
for i in conf/* ; do
Expand Down

0 comments on commit 18719fa

Please sign in to comment.