diff options
author | P. J. McDermott <pjm@nac.net> | 2013-12-07 17:22:04 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-12-07 17:22:04 (EST) |
commit | f8a1936d034fde38fae0057722fd6f86b78294a5 (patch) | |
tree | a4c0a96f62f7293f64c99c2ee2139f0276ab2387 | |
parent | 077d2006ba917607f8b616ca38ea8928ec7985eb (diff) |
bootstrap-main.sh: Fix syntax errors.
-rwxr-xr-x | bootstrap-main.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bootstrap-main.sh b/bootstrap-main.sh index fcdfe63..3f7b627 100755 --- a/bootstrap-main.sh +++ b/bootstrap-main.sh @@ -32,19 +32,19 @@ main() { time -p "${SCRIPT_DIR}/bootstrap-prepare.sh"; } \ >"logs/${DATE}_prepare.log" 2>&1 - { time -p "${SCRIPT_DIR}/bootstrap-stage1-build.sh" } \ + { time -p "${SCRIPT_DIR}/bootstrap-stage1-build.sh"; } \ >"logs/${DATE}_stage1-build.log" 2>&1 - { time -p "${SCRIPT_DIR}/bootstrap-stage1-install.sh" } \ + { time -p "${SCRIPT_DIR}/bootstrap-stage1-install.sh"; } \ >"logs/${DATE}_stage1-install.log" 2>&1 - { time -p "${SCRIPT_DIR}/bootstrap-stage1-test.sh" } \ + { time -p "${SCRIPT_DIR}/bootstrap-stage1-test.sh"; } \ >"logs/${DATE}_stage1-test.log" 2>&1 - { time -p "${SCRIPT_DIR}/bootstrap-stage2-build.sh" } \ + { time -p "${SCRIPT_DIR}/bootstrap-stage2-build.sh"; } \ >"logs/${DATE}_stage2-build.log" 2>&1 - { time -p "${SCRIPT_DIR}/bootstrap-stage2-install.sh" } \ + { time -p "${SCRIPT_DIR}/bootstrap-stage2-install.sh"; } \ >"logs/${DATE}_stage2-install.log" 2>&1 - { time -p "${SCRIPT_DIR}/bootstrap-stage2-test.sh" } \ + { time -p "${SCRIPT_DIR}/bootstrap-stage2-test.sh"; } \ >"logs/${DATE}_stage2-test.log" 2>&1 - { time -p "${SCRIPT_DIR}/bootstrap-stage3-build.sh" } \ + { time -p "${SCRIPT_DIR}/bootstrap-stage3-build.sh"; } \ >"logs/${DATE}_stage3-build.log" 2>&1 } |