@@ -11,7 +11,7 @@ may be called.
1111## How To Install
1212
1313Just clone the git repo and place the * soda* file in your path (a symlinks works well to).
14- After that, ensure you have a ** $SODA_DIR ** pointing to the place you clone the repo and you're
14+ After that, ensure you have a ** $SODA_HOME ** pointing to the place you clone the repo and you're
1515done.
1616
1717## How To Use
@@ -20,10 +20,10 @@ Create a *~/.soda* directory with the following structure:
2020
2121* _ scripts_ - directory to put the scripts organized by namespaces
2222* _ config_ - directory to put the configuration files organized by namespaces
23- * _ resources _ - directory to put resources organized by namespaces
23+ * Any other directory you like, still organized by namespaces
2424
25- You can also use the same directory you install soda without configure the user directory. To access
26- resource and configuration files, use the ** exists** function.
25+ You can also use the same directory you install soda without configure the user directory. You can
26+ access any file in that directories by using the ** exists** function.
2727
2828Inside * scripts* , any function in any script present in * scripts/common* and exposed through
2929** task** can be invoked:
@@ -158,13 +158,13 @@ completion mode.
158158
159159## Configuration
160160
161- Every namespace has it own configuration dir in $SODA_USER_DIR /config/NAMESPACE. Any configuration
161+ Every namespace has it own configuration dir in $SODA_USER_HOME /config/NAMESPACE. Any configuration
162162file will be loaded in that directory at namespace import ** before** loading script files.
163163
164- You can configure ** soda** namespace through a ** $SODA_USER_DIR /conf/soda/soda.conf** file (or any
164+ You can configure ** soda** namespace through a ** $SODA_USER_HOME /conf/soda/soda.conf** file (or any
165165other name but inside that directory). The supported properties are:
166166
167- * ** LOG_FILE** - The log file (defaults to * $SODA_DIR /log/soda.log* )
167+ * ** LOG_FILE** - The log file (defaults to * $SODA_HOME /log/soda.log* )
168168* ** SODA_NAMESPACE_DELIMITER** - The namespace delimiter (defaults to ** .** ). Changing this also
169169affects the bash completion
170170* ** SODA_TASK_BASH_COMPLETION_SUFFIX** - The suffix to build the function for custom bash completion
@@ -229,7 +229,7 @@ underscores.
229229
230230### exists (type path)
231231
232- Checks if the file $SODA_USER_DIR /$type/$NAMESPACE/$path exists using the namespace of the invoked
232+ Checks if the file $SODA_USER_HOME /$type/$NAMESPACE/$path exists using the namespace of the invoked
233233task or imported namespace. The file path will be stored in the $FILE variable.
234234
235235 exists config "my-config.conf" && {
0 commit comments