From 0bc67215ae5dce72ab557ac85a9a0ef139853dc3 Mon Sep 17 00:00:00 2001 From: apolopena <3060702+apolopena@users.noreply.github.com> Date: Tue, 30 Mar 2021 12:12:17 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20FIX:=20https://github.com/apolop?= =?UTF-8?q?ena/gitpod-laravel8-starter/issues/82,=20change=20name=20to=20w?= =?UTF-8?q?orkspace-init-logger.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bash/before-tasks.sh | 2 +- bash/init-gitpod.sh | 2 +- bash/init-optional-scaffolding.sh | 2 +- bash/init-phpmyadmin.sh | 2 +- bash/init-react-example.sh | 2 +- bash/{workspace-init-log.sh => workspace-init-logger.sh} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename bash/{workspace-init-log.sh => workspace-init-logger.sh} (100%) diff --git a/bash/before-tasks.sh b/bash/before-tasks.sh index 7b50b4e3..35d25103 100644 --- a/bash/before-tasks.sh +++ b/bash/before-tasks.sh @@ -12,7 +12,7 @@ # in everytime the workspace starts. We do this in the 'before' task in .gitpod.yml # Load logger -. workspace-init-log.sh +. workspace-init-logger.sh # Rake tasks (will be written to ~/.rake). # Some rake tasks are dynamic and depend on the configuration in starter.ini diff --git a/bash/init-gitpod.sh b/bash/init-gitpod.sh index f2c936f5..a3e72909 100644 --- a/bash/init-gitpod.sh +++ b/bash/init-gitpod.sh @@ -8,7 +8,7 @@ # Tasks to be run when a gitpod workspace is created for the first time. # Load logger -. workspace-init-log.sh +. workspace-init-logger.sh # Load spinner . bash/third-party/spinner.sh diff --git a/bash/init-optional-scaffolding.sh b/bash/init-optional-scaffolding.sh index b7b4db72..cc6491a4 100644 --- a/bash/init-optional-scaffolding.sh +++ b/bash/init-optional-scaffolding.sh @@ -8,7 +8,7 @@ # Installs various packages and scaffolding according to the directive set in starter.ini # Load logger -. workspace-init-log.sh +. workspace-init-logger.sh # regexp pattern for checking an array of exit codes all_zeros_reg='^0$|^0*0$' diff --git a/bash/init-phpmyadmin.sh b/bash/init-phpmyadmin.sh index 27ab051b..ab2e4ea1 100644 --- a/bash/init-phpmyadmin.sh +++ b/bash/init-phpmyadmin.sh @@ -8,7 +8,7 @@ # Configures an existing phpmyadmin installation. # Load logger -. workspace-init-log.sh +. workspace-init-logger.sh # regexp pattern for checking an array of exit codes all_zeros_reg='^0$|^0*0$' diff --git a/bash/init-react-example.sh b/bash/init-react-example.sh index 2601985b..115255fc 100644 --- a/bash/init-react-example.sh +++ b/bash/init-react-example.sh @@ -8,7 +8,7 @@ # Initial setup for the gitpod-laravel8-starter react example. # Load logger -. workspace-init-log.sh +. workspace-init-logger.sh declare -a exit_codes=() all_zeros='^0$|^0*0$' diff --git a/bash/workspace-init-log.sh b/bash/workspace-init-logger.sh similarity index 100% rename from bash/workspace-init-log.sh rename to bash/workspace-init-logger.sh