From 10fa0a7ffad1d4e67fa5d1a861f013e3d640249d Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Tue, 10 Jul 2018 09:30:02 -0400 Subject: [PATCH] Update script to use global header file --- script/update | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/script/update b/script/update index 752ad3ad..8cb772c1 100755 --- a/script/update +++ b/script/update @@ -1,10 +1,8 @@ #!/bin/bash -# If a command fails, exit the script -set -e +# script/update: Update dependencies -# Ensure we are in the app root directory (not the /script directory) -cd "$(dirname "${0}")/.." +source "$(dirname "${0}")"/../script/include/global_header.inc.sh -# Update dependencies -script/bootstrap +# Run the bootstrap script +source ./script/bootstrap