- Fix the project's name inside "settings.gradle".

- Fix the "change-dir" to the "libs"-directory in "installAndRun.sh"
This commit is contained in:
Lampros Smyrnaios 2021-09-22 17:06:30 +03:00
parent 2ffb44a615
commit e091a029a8
2 changed files with 7 additions and 2 deletions

View File

@ -22,13 +22,18 @@ if [[ ! -f $inputDataFile ]]; then
touch $inputDataFile
echo "$workerId,$controllerBaseUrl" >> $inputDataFile
echo -e "\n\n"
fi
gradleVersion="7.2"
if [[ justInstall -eq 0 ]]; then
cd libs || (mkdir libs && (cd libs || exit))
if [ ! -d libs ]; then
mkdir libs || (echo -e "The directory \"libs\" could not be created! Exiting.." && exit 2)
fi
cd libs || exit 3
git clone https://github.com/LSmyrnaios/PublicationsRetriever.git # We assume there is no previously source-code here, if so, it will be overwritten.
# Do not need to perform a string-replace in "build.gradle", since it automatically gets all ".jar" files.

View File

@ -3,4 +3,4 @@ pluginManagement {
gradlePluginPortal()
}
}
rootProject.name = 'urls_worker'
rootProject.name = 'UrlsWorker'