We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c807646 commit 83e36aaCopy full SHA for 83e36aa
404.md
@@ -0,0 +1,9 @@
1
+---
2
+layout: default
3
4
+<main class="landing">
5
+ <section class="front-content">
6
+ Page not found :(
7
+ </section>
8
+</main>
9
+
post-receive
@@ -0,0 +1,16 @@
+#!/bin/sh
+PATH="$HOME/.rbenv/bin:$PATH"
+PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"
+eval "$(rbenv init -)"
+GIT_REPO=$HOME/danielliu
+TEMP_GIT_CLONE=/tmp/danielliu
+GEMFILE=$TEMP_GIT_CLONE/Gemfile
10
+PUBLIC_WWW=/var/www/danielliu
11
12
+git clone $GIT_REPO $TEMP_GIT_CLONE
13
+BUNDLE_GEMFILE=$GEMFILE bundle install
14
+BUNDLE_GEMFILE=$GEMFILE bundle exec jekyll build -s $TEMP_GIT_CLONE -d $PUBLIC_WWW
15
+rm -rf $TEMP_GIT_CLONE
16
+exit
0 commit comments