17 lines
152 B
Bash
17 lines
152 B
Bash
#!/bin/sh
|
|
|
|
# Set verbose mode
|
|
set -x
|
|
|
|
# Stop executing after error
|
|
set -e
|
|
|
|
# Change permissions
|
|
chmod -R a+w ./
|
|
|
|
pwd
|
|
|
|
ls -R
|
|
|
|
# Run command
|
|
jekyll build |