moves /bin to api/bin
parent
bd44f6c658
commit
56c61d07c3
|
@ -5,7 +5,6 @@
|
||||||
!app/cache/.gitkeep
|
!app/cache/.gitkeep
|
||||||
!app/logs/.gitkeep
|
!app/logs/.gitkeep
|
||||||
/app/phpunit.xml
|
/app/phpunit.xml
|
||||||
/bin/
|
|
||||||
/build/
|
/build/
|
||||||
/composer.phar
|
/composer.phar
|
||||||
/var/*
|
/var/*
|
||||||
|
|
|
@ -232,6 +232,7 @@ function copyServerFiles() {
|
||||||
#public
|
#public
|
||||||
src
|
src
|
||||||
.env
|
.env
|
||||||
|
bin
|
||||||
composer.json
|
composer.json
|
||||||
composer.lock
|
composer.lock
|
||||||
phpunit.xml.dist
|
phpunit.xml.dist
|
||||||
|
@ -242,6 +243,7 @@ function copyServerFiles() {
|
||||||
#public
|
#public
|
||||||
src
|
src
|
||||||
.env
|
.env
|
||||||
|
bin
|
||||||
composer.json
|
composer.json
|
||||||
composer.lock
|
composer.lock
|
||||||
phpunit.xml.dist
|
phpunit.xml.dist
|
||||||
|
@ -256,7 +258,7 @@ function copyServerFiles() {
|
||||||
# Copiar ficheros.
|
# Copiar ficheros.
|
||||||
echoAndLog "${FUNCNAME}(): copying files to server directories"
|
echoAndLog "${FUNCNAME}(): copying files to server directories"
|
||||||
|
|
||||||
pushd "$WORKDIR/ogdhcp" || return
|
pushd "$WORKDIR/ogdhcp/api" || return
|
||||||
local i
|
local i
|
||||||
for (( i = 0; i < ${#SOURCES[@]}; i++ )); do
|
for (( i = 0; i < ${#SOURCES[@]}; i++ )); do
|
||||||
if [ -f "${SOURCES[$i]}" ]; then
|
if [ -f "${SOURCES[$i]}" ]; then
|
||||||
|
@ -269,6 +271,7 @@ function copyServerFiles() {
|
||||||
warningAndLog "Unable to copy ${SOURCES[$i]} to $symfony_target/${TARGETS[$i]}"
|
warningAndLog "Unable to copy ${SOURCES[$i]} to $symfony_target/${TARGETS[$i]}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
pushd "$WORKDIR/ogdhcp" || return
|
||||||
# Copiar el directorio etc
|
# Copiar el directorio etc
|
||||||
echoAndLog "Copying etc directory to $path_opengnsys_base"
|
echoAndLog "Copying etc directory to $path_opengnsys_base"
|
||||||
cp -a etc "$path_opengnsys_base"
|
cp -a etc "$path_opengnsys_base"
|
||||||
|
|
Loading…
Reference in New Issue