- Where to configure the PATH:
- file
/etc/paths
~/.profile
of your home directory
- file
/etc/profile
for system-wide operations.
./gradlew build -x test
: skip tests--refresh-dependencies
. You can also delete the cached files under ~/.gradle/caches
. With the next build Gradle attempts to download the dependencies again.repositories {
mavenLocal()
Table of Contents
#!/bin/bash | |
FOLDERS_TO_INSPECT=("folder1" "folder2" "folder3") | |
STAGED_FILES="$(git diff --cached --name-only)" | |
function main { | |
for folder_to_inspect in "${FOLDERS_TO_INSPECT[@]}" ; do | |
echo $folder_to_inspect | |
run_actions_if_needed $folder_to_inspect |