Last active
April 10, 2018 15:46
-
-
Save YusukeIwaki/cd8c5361817e4d26392d2b108ff5d44f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <manifest> | |
| <projects> | |
| <project name="rails" | |
| remote="https://github.com/rails/rails" | |
| path="rails" /> | |
| <project name="rspec-core" | |
| remote="https://github.com/rspec/rspec-core" | |
| path="rspec-core" /> | |
| <project name="rspec-rails" | |
| remote="https://github.com/rspec/rspec-rails" | |
| path="rspec-rails" /> | |
| <project name="rspec-expectations" | |
| remote="https://github.com/rspec/rspec-expectations" | |
| path="rspec-expectations" /> | |
| <project name="rspec-support" | |
| remote="https://github.com/rspec/rspec-support" | |
| path="rspec-support" /> | |
| <project name="rspec-mocks" | |
| remote="https://github.com/rspec/rspec-mocks" | |
| path="rspec-mocks" /> | |
| <project name="sdk" | |
| remote="https://github.com/dart-lang/sdk" | |
| path="dart-sdk" /> | |
| <project name="flutter" | |
| remote="https://github.com/flutter/flutter" | |
| path="flutter" /> | |
| <project name="flutter-engine" | |
| remote="https://github.com/flutter/engine" | |
| path="flutter-engine" /> | |
| <project name="flutter-plugins" | |
| remote="https://github.com/flutter/plugins" | |
| path="flutter-plugins" /> | |
| </projects> | |
| </manifest> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd /var/opengrok/src | |
| if [ ! -e ".jiri_manifest" ]; then | |
| wget $JIRI_MANIFEST_URL -O .jiri_manifest | |
| fi | |
| jiri update | |
| rm -rf /var/opengrok/data | |
| rm -rf /var/opengrok/etc | |
| mkdir /var/opengrok/data | |
| mkdir /var/opengrok/etc | |
| OpenGrok index |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment