Skip to content

Commit 8b24362

Browse files
committed
Keep logs
1 parent d86873c commit 8b24362

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

dolidev

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ up_dolidev() {
2525
configure_dolibarr
2626

2727
echo "Starting the Dolibarr instance."
28-
(source ./.env && cd docker && docker-compose up -d --build > /dev/null 2>&1)
28+
(source ./.env && cd docker && docker-compose up -d --build)
2929

3030
if [[ "$SEED" -eq 1 ]]; then
3131
echo "Seeding the database."
@@ -63,10 +63,10 @@ down_dolidev() {
6363

6464
if [ "$RM" -eq 0 ]; then
6565
echo "Stopping the Dolibarr instance."
66-
(cd docker && docker-compose down > /dev/null 2>&1)
66+
(cd docker && docker-compose down)
6767
else
6868
echo "Removing the Dolibarr instance."
69-
(cd docker && docker-compose down -v > /dev/null 2>&1)
69+
(cd docker && docker-compose down)
7070

7171
echo "Wipping files on disk."
7272
rm -rf dolibarr
@@ -79,13 +79,13 @@ install_dolibarr() {
7979
(
8080
cd dolibarr
8181
if [ "$2" -eq 1 ]; then
82-
git pull --rebase --autostash > /dev/null 2>&1
82+
git pull --rebase --autostash
8383
fi
84-
git checkout "$1" > /dev/null 2>&1
84+
git checkout "$1"
8585
)
8686
else
8787
echo "Installing Dolibarr v$1 from $DOLIBARR_URL into ./dolibarr"
88-
git clone -b "$1" "$DOLIBARR_URL" dolibarr > /dev/null 2>&1
88+
git clone -b "$1" "$DOLIBARR_URL" dolibarr
8989
fi
9090

9191
# Create documents folder if missing

0 commit comments

Comments
 (0)