gaztec 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/gaztec-install +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
package/gaztec-install
CHANGED
|
@@ -23,10 +23,11 @@ while [[ $dir != "/" ]]; do
|
|
|
23
23
|
fi
|
|
24
24
|
dir=$(dirname $dir)
|
|
25
25
|
done
|
|
26
|
-
|
|
26
|
+
|
|
27
|
+
# fallback
|
|
27
28
|
if [[ -z "$AZTEC_VERSION" ]]; then
|
|
28
|
-
echo "No .gaztecrc file found in the current or parent directories starting from $(pwd)"
|
|
29
|
-
|
|
29
|
+
echo "No .gaztecrc file found in the current or parent directories starting from $(pwd). Falling back to latest version."
|
|
30
|
+
AZTEC_VERSION="latest"
|
|
30
31
|
fi
|
|
31
32
|
|
|
32
33
|
export VERSION=$AZTEC_VERSION
|