#!/bin/sh

# script/update: Update project after a fresh pull

set -e

cd "$(dirname "$0")/.."

script/bootstrap

echo "==> Update completed!"
