8000 Feature/planning issue 188 by mchacki · Pull Request #2547 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Feature/planning issue 188 #2547

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 12, 2017
Prev Previous commit
Next Next commit
warn when relinking build directory
  • Loading branch information
ObiWahn authored and mchacki committed Jun 11, 2017
commit 33d028dad4b0b4fe890e5edd31f9c4bbf7cdbf1c
7 changes: 5 additions & 2 deletions scripts/generateDocumentation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,19 @@ test_tools(){
main(){
#test for basic tools
test_tools

TARGET=$1
shift
if test -z "$TARGET"; then
./scripts/build-deb.sh --buildDir build-docu --parallel 2

# we expect this to be a symlink, so no -r ;-)
echo "#############################################"
echo "RELINKING BUILD DIRECTORY !!!!!!!!!!!!!!!!!!!"
echo "#############################################"
rm -f build
ln -s build-docu build

./utils/generateExamples.sh
fi
./utils/generateSwagger.sh
Expand Down
0