Verson 1.0.1
This commit is contained in:
parent
f29dddf82c
commit
4a1f9e45f5
1 changed files with 7 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#
|
#
|
||||||
# Version: 1.0.1
|
# Version: 1.0.2
|
||||||
#
|
#
|
||||||
|
|
||||||
# set the examples directories
|
# set the examples directories
|
||||||
|
@ -11,14 +11,14 @@ declare -a dirs=(
|
||||||
"examples/kotlin")
|
"examples/kotlin")
|
||||||
java8=true
|
java8=true
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
pwd=$PWD
|
pwd=$PWD
|
||||||
cyan=$(tput setaf 6)
|
cyan=$(tput setaf 6)
|
||||||
green=$(tput setaf 2)
|
green=$(tput setaf 2)
|
||||||
red=$(tput setaf 1)
|
red=$(tput setaf 1)
|
||||||
std=$(tput sgr0)
|
std=$(tput sgr0)
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
if [ "$java8" = true ]
|
if [ "$java8" = true ]
|
||||||
then
|
then
|
||||||
export JAVA_HOME="$JAVA8_HOME"
|
export JAVA_HOME="$JAVA8_HOME"
|
||||||
|
@ -50,11 +50,11 @@ updateWrappers() {
|
||||||
|
|
||||||
echo -e "Updating wrappers..."
|
echo -e "Updating wrappers..."
|
||||||
|
|
||||||
for d in "${dirs[@]}"; do
|
for d in "${!dirs[@]}"; do
|
||||||
if [ -d "$d" ]; then
|
if [ "$d" -ne 0 ]; then
|
||||||
cd "$d" || exit 1
|
cd "${dirs[d]}" || exit 1
|
||||||
fi
|
fi
|
||||||
echo -e " ${cyan}${d}${std}"
|
echo -e " ${cyan}${dirs[d]}${std}"
|
||||||
updateWrappers
|
updateWrappers
|
||||||
cd "$pwd"
|
cd "$pwd"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue