You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use configuration file rather than inline definition
Example init code :
7 #Initialisation des variables
8 if [ ! -f "${VARIABLES_FILE:=variables.conf}" ]; then
9 echo "Le fichier ${VARIABLES_FILE:=variables.conf} manquant"
10 exit 1
11 fi
12
13 . "${VARIABLES_FILE:=variables.conf}"
14
and variables.conf is made of :
1 #Initialisation des variables
2 SVN_REPOSITORY="svn.spip.org/spip-zone/"
3 SVN_DIRECTORY="/var/svn-repos/spip-zone/"
4 SVN_ROOTS=('plugins' 'outils' 'dev');
5 SVN_PROJECTS_SUBGIT=()
etc
The text was updated successfully, but these errors were encountered:
use configuration file rather than inline definition
Example init code :
7 #Initialisation des variables
8 if [ ! -f "${VARIABLES_FILE:=variables.conf}" ]; then
9 echo "Le fichier ${VARIABLES_FILE:=variables.conf} manquant"
10 exit 1
11 fi
12
13 . "${VARIABLES_FILE:=variables.conf}"
14
and variables.conf is made of :
1 #Initialisation des variables
2 SVN_REPOSITORY="svn.spip.org/spip-zone/"
3 SVN_DIRECTORY="/var/svn-repos/spip-zone/"
4 SVN_ROOTS=('plugins' 'outils' 'dev');
5 SVN_PROJECTS_SUBGIT=()
etc
The text was updated successfully, but these errors were encountered: