1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 07:30:12 +01:00

Make paths in bin absolute

This commit is contained in:
squidfunk 2016-11-01 20:30:28 +01:00
parent 23ebd31b30
commit 2cd7f3de6e
5 changed files with 26 additions and 11 deletions

View File

@ -20,12 +20,15 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Resolve root directory
ROOT=$(dirname $0)/..
# Check if "npm install" was executed
if [[ ! -d $(pwd)/node_modules ]]; then
if [[ ! -d $ROOT/node_modules ]]; then
echo "\"node_modules\" not found:"
echo "npm install"
exit 1
fi
# Run command
$(pwd)/node_modules/.bin/gulp build --clean --optimize --revision
$ROOT/node_modules/.bin/gulp build --clean --optimize --revision

View File

@ -20,12 +20,15 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Resolve root directory
ROOT=$(dirname $0)/..
# Check if "npm install" was executed
if [[ ! -d $(pwd)/node_modules ]]; then
if [[ ! -d $ROOT/node_modules ]]; then
echo "\"node_modules\" not found:"
echo "npm install"
exit 1
fi
# Run command
$(pwd)/node_modules/.bin/gulp clean
$ROOT/node_modules/.bin/gulp clean

View File

@ -20,19 +20,22 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Resolve root directory
ROOT=$(dirname $0)/..
# Check if "npm install" was executed
if [[ ! -d $(pwd)/node_modules ]]; then
if [[ ! -d $ROOT/node_modules ]]; then
echo "\"node_modules\" not found:"
echo "npm install"
exit 1
fi
# Run ESLint
$(pwd)/node_modules/.bin/eslint .
$ROOT/node_modules/.bin/eslint .
ESLINT=$?
# Run Sass-Lint
$(pwd)/node_modules/.bin/sass-lint -c .sass-lint.yml -vq
$ROOT/node_modules/.bin/sass-lint -c .sass-lint.yml -vq
SASSLINT=$?
# If one command failed, exit with error

View File

@ -20,12 +20,15 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Resolve root directory
ROOT=$(dirname $0)/..
# Check if "npm install" was executed
if [[ ! -d $(pwd)/node_modules ]]; then
if [[ ! -d $ROOT/node_modules ]]; then
echo "\"node_modules\" not found:"
echo "npm install"
exit 1
fi
# Run command
$(pwd)/node_modules/.bin/gulp watch --no-lint
$ROOT/node_modules/.bin/gulp watch --no-lint

View File

@ -20,12 +20,15 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Resolve root directory
ROOT=$(dirname $0)/..
# Check if "npm install" was executed
if [[ ! -d $(pwd)/node_modules ]]; then
if [[ ! -d $ROOT/node_modules ]]; then
echo "\"node_modules\" not found:"
echo "npm install"
exit 1
fi
# Run command
$(pwd)/node_modules/.bin/gulp test
$ROOT/node_modules/.bin/gulp test