Skip to content

Commit

Permalink
v1.0.16 (#17)
Browse files Browse the repository at this point in the history
Major updates
* Updating to FreeScout 1.7.18

Minor updates
* Changing installation check
  • Loading branch information
bfren authored Oct 14, 2021
1 parent 3fa0c3c commit 4032bfb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion FREESCOUT_REVISION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.17
1.7.18
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.15
1.0.16
4 changes: 2 additions & 2 deletions overlay/usr/lib/bf/freescout/setup-artisan
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export BF_E=`basename ${0}`

cd ${FREESCOUT_SRC}

if [ "${FREESCOUT_INSTALLED-}" -ne "1" ] ; then
if [ "${FREESCOUT_INSTALLED-}" != "1" ] ; then
bf-debug "Generate key."
php artisan key:generate
fi
Expand All @@ -26,7 +26,7 @@ php artisan config:clear
bf-debug "Migrate database."
php artisan migrate --force

if [ "${FREESCOUT_INSTALLED-}" -ne "1" ] ; then
if [ "${FREESCOUT_INSTALLED-}" != "1" ] ; then

# ensure all required environment variables are set
[[ -z "${FREESCOUT_ADMIN_FIRSTNAME-}" ]] && bf-error "FREESCOUT_ADMIN_FIRSTNAME must be set."
Expand Down
2 changes: 1 addition & 1 deletion overlay/usr/lib/bf/freescout/setup-config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export BF_E=`basename ${0}`
# If an existing installation was detected, do not proceed.
#======================================================================================================================

if [ "${FREESCOUT_INSTALLED-}" = "1" ] ; then
if [ "${FREESCOUT_INSTALLED-}" != "1" ] ; then
bf-echo "Existing installation detected - do not regenerate .env."
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion overlay/usr/lib/bf/freescout/setup-content
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ delete-if-not-link () {


#======================================================================================================================
# If /freescout already has content in it, delete source content so it can be linked to /freescout content...
# If /data already has content in it, delete source content so it can be linked to /freescout content...
#======================================================================================================================

if [ "$(ls -A ${FREESCOUT})" ] ; then
Expand Down

0 comments on commit 4032bfb

Please sign in to comment.