Saturday, May 14, 2016

Jekyll with Virtual Box and Network Mount

It appears when you have your files for Jekyll stored on the host machine on VirtualBox the files get cached and you receive a stale copy.

A simple solution is to "touch" the file.

#!/bin/bash

echo "Touching all the things..."

find . -exec touch {} \;

echo "Finished Touching..."

jekyll serve



No comments:

Post a Comment