Skip to content
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

Use link in shell script. #395

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
################################################################################
function usage {
################################################################################
echo "Script for creating metastore service."
echo "Script for creating $REPO_NAME service."
echo "USAGE:"
echo " $0 [/path/to/installation/dir]"
echo "IMPORTANT: Please enter an empty or new directory as installation directory."
Expand Down Expand Up @@ -98,18 +98,18 @@ done
################################################################################
ACTUAL_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

################################################################################
# Check parameters
################################################################################
checkParameters "$*"

################################################################################
# Determine repo name
################################################################################
REPO_NAME=$(./gradlew -q printProjectName)
# Use only last line
REPO_NAME=${REPO_NAME##*$'\n'}

################################################################################
# Check parameters
################################################################################
checkParameters "$*"

printInfo "Build microservice of $REPO_NAME at '$INSTALLATION_DIRECTORY'"

################################################################################
Expand Down Expand Up @@ -150,6 +150,8 @@ cd "$INSTALLATION_DIRECTORY" || { echo "Failure changing to directory $INSTALLAT

# Determine name of jar file.
jarFile=($(ls $REPO_NAME*.jar))
# Create soft link for jar file
ln -s ${jarFile[0]} $REPO_NAME.jar

{
echo "#!/bin/bash"
Expand All @@ -167,7 +169,7 @@ jarFile=($(ls $REPO_NAME*.jar))
echo "################################################################################"
echo "# Define jar file"
echo "################################################################################"
echo "jarFile=${jarFile[0]}"
echo "jarFile=${REPO_NAME}.jar"
echo " "
echo "################################################################################"
echo "# Determine directory of script."
Expand All @@ -180,6 +182,7 @@ jarFile=($(ls $REPO_NAME*.jar))
echo "################################################################################"
echo "java -cp \".:\$jarFile\" -Dloader.path=\"file://\$ACTUAL_DIR/\$jarFile,./lib/,.\" -jar \$jarFile \$*"
} > run.sh

# make script executable
chmod 755 run.sh

Expand Down