Created
August 8, 2024 09:20
-
-
Save DaGeRe/ee98da4fd347113ded3872132c6487c3 to your computer and use it in GitHub Desktop.
my-company build skript
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 | |
| # This script aims for cloning all my-company projects (https://ivans-innovation-lab.github.io/projects/) and building them | |
| set -e | |
| for project in my-company-common my-company-project-domain my-company-team-domain my-company-blog-materialized-view my-company-project-materialized-view my-company-team-materialized-view | |
| do | |
| if [ ! -d $project ] | |
| then | |
| git clone https://github.com/ivans-innovation-lab/$project.git | |
| cd $project | |
| ./mvnw clean install -DskipTests | |
| cd .. | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment