diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-03-11 15:28:17 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-11-04 18:49:51 +0100 | 
| commit | d65ad960e9539caf292e10e8f65611761b7703cd (patch) | |
| tree | acc7e3ec603b086eb2c0e08f6d1be24de1dcfb0b /debian/python3-django-ishtar.postinst | |
| parent | 5d77779ff702aa78b7118c98178bbbec65960856 (diff) | |
| download | Ishtar-d65ad960e9539caf292e10e8f65611761b7703cd.tar.bz2 Ishtar-d65ad960e9539caf292e10e8f65611761b7703cd.zip | |
Debian: fix postinst - force bash
Diffstat (limited to 'debian/python3-django-ishtar.postinst')
| -rw-r--r-- | debian/python3-django-ishtar.postinst | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/debian/python3-django-ishtar.postinst b/debian/python3-django-ishtar.postinst index 833243495..6dd3f99a0 100644 --- a/debian/python3-django-ishtar.postinst +++ b/debian/python3-django-ishtar.postinst @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash  set -e  #set -x @@ -30,7 +30,7 @@ case "$1" in          if [ ! -f $CONFIG_PATH/config ]; then              cp /usr/share/python3-django-ishtar/install/config.template $CONFIG_PATH/config ;          fi -        . $CONFIG_PATH/config +        source $CONFIG_PATH/config          export LANG=$ISHTAR_LOCALE.UTF-8          if [ "$(locale 2>&1 >/dev/null|wc -l)" != 0 ]; then              cecho r "Unable to set LANG=$LANG properly" | 
